package cn.wisenergy.service.app;
import cn.wisenergy.common.utils.R;
import cn.wisenergy.model.vo.MonthAwardVo;
/**
* @author 86187
* @ Description:
* @ Author : 86187
* @ Date : 2021/3/9 15:25
*/
public interface MonthAwardService {
/**
* 获取月度奖金
* @param userId 用户id
* @return 月度奖金
*/
R<MonthAwardVo> queryMonthAward(String userId);
}
-
licc authored080b4735