This commit is contained in:
杜建超 2020-10-13 14:02:25 +08:00
parent d21a33863e
commit d052dd10fb
2 changed files with 28 additions and 0 deletions

View File

@ -16,6 +16,8 @@ public enum WorkMsgTypeEnum {
PASS(3, "绩效通过", "去查看", "# 绩效通过\n ## 你的绩效已经通过"),
URGING(4, "绩效催办", "去审批", "# 绩效催办\n ## @提醒您审批"),
END(5, "绩效终止", "去查看", "# 绩效终止\n ## @,你的绩效终止"),
// 您的2020年10月绩效考核已经开始请尽快制定绩效目标
// 吴林的2020年12月绩效考核的目标需要您确认点击前往确认
;
int type;
String title;

View File

@ -0,0 +1,26 @@
package com.lz.modules.performance;
import com.lz.common.utils.R;
import com.lz.modules.sys.controller.AbstractController;
import com.lz.modules.third.service.ThirdMsgSendRecordService;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @Author: djc
* @Desc:
* @Date: 2020/10/13 11:27
*/
@RestController
@RequestMapping("/performance")
public class TaskController extends AbstractController{
private ThirdMsgSendRecordService thirdMsgSendRecordService;
@RequestMapping("task/list")
public R list(){
Long userId = getUserId();
thirdMsgSendRecordService.list();
return R.ok();
}
}