|
@@ -245,6 +245,8 @@ public class ReportDingServiceImpl {
|
|
|
|
|
|
//消息实体
|
|
|
OA.Body body = new OA.Body();
|
|
|
+ //消息标题
|
|
|
+ body.setTitle("周日报提醒");
|
|
|
//消息内容
|
|
|
List<Form> formList = new ArrayList<>();
|
|
|
|
|
@@ -252,7 +254,7 @@ public class ReportDingServiceImpl {
|
|
|
String content = "您" + year + "年" + month + "月的" + reportTypeStr + "填写率为0%,请及时填写" + reportTypeStr;
|
|
|
|
|
|
Form formWorkTime = new Form();
|
|
|
- formWorkTime.setKey("消息内容:\n");
|
|
|
+ formWorkTime.setKey("提醒内容:\n");
|
|
|
formWorkTime.setValue(content);
|
|
|
formList.add(formWorkTime);
|
|
|
|