fix
This commit is contained in:
parent
d21a33863e
commit
d052dd10fb
@ -16,6 +16,8 @@ public enum WorkMsgTypeEnum {
|
||||
PASS(3, "绩效通过", "去查看", "# 绩效通过\n ## 你的绩效已经通过"),
|
||||
URGING(4, "绩效催办", "去审批", "# 绩效催办\n ## @提醒您审批"),
|
||||
END(5, "绩效终止", "去查看", "# 绩效终止\n ## @,你的绩效终止"),
|
||||
// 您的2020年10月绩效考核已经开始,请尽快制定绩效目标
|
||||
// 吴林的2020年12月绩效考核的目标需要您确认,点击前往确认
|
||||
;
|
||||
int type;
|
||||
String title;
|
||||
|
||||
26
src/main/java/com/lz/modules/performance/TaskController.java
Normal file
26
src/main/java/com/lz/modules/performance/TaskController.java
Normal 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();
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user