Commit cca7339ffe529cc78dcb1dd05fdf8efe1155a89c
1 parent
2a3728e1a5
Exists in
master
and in
6 other branches
update code
Showing 1 changed file with 8 additions and 8 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SmsConfigFacade.java
View file @
cca7339
... | ... | @@ -986,7 +986,7 @@ |
986 | 986 | map.put("planTime", obj.getPlanTime()); |
987 | 987 | map.put("actualTime", obj.getActualTime() == null ? "" : obj.getActualTime()); |
988 | 988 | map.put("timeType",SmsTimeTypeEnums.getNameById(obj.getTimeType())); |
989 | - map.put("smsStatus", SmsStatusEnums.getNameById(obj.getStatus())); | |
989 | + map.put("smsStatus", MsgStatusEnums.getNameById(obj.getStatus())); | |
990 | 990 | map.put("first", obj.getFirst()); |
991 | 991 | map.put("keyword1", obj.getKeyword1()); |
992 | 992 | map.put("keyword2",obj.getKeyword2()); |
993 | 993 | |
994 | 994 | |
995 | 995 | |
... | ... | @@ -1050,17 +1050,17 @@ |
1050 | 1050 | OutputStream out = httpServletResponse.getOutputStream(); |
1051 | 1051 | Map<String, String> cnames = new LinkedHashMap<>(); |
1052 | 1052 | cnames.put("hospitalName", "医院"); |
1053 | - cnames.put("objType", "发送对象"); | |
1054 | - cnames.put("smsType", "短信类型"); | |
1053 | + cnames.put("smsType", "消息类型"); | |
1055 | 1054 | cnames.put("phone", "电话号码"); |
1056 | - cnames.put("first", "推送内容"); | |
1057 | - cnames.put("keyword1","推送标题"); | |
1058 | - cnames.put("keyword2","推送时间"); | |
1059 | - cnames.put("remark", "推送备注"); | |
1055 | + cnames.put("objType", "对象类型"); | |
1060 | 1056 | cnames.put("planTime", "计划发送时间"); |
1061 | 1057 | cnames.put("actualTime", "实际发送时间"); |
1062 | - cnames.put("smsStatus", "状态"); | |
1063 | 1058 | cnames.put("timeType", "是否及时"); |
1059 | + cnames.put("smsStatus", "推送状态"); | |
1060 | + cnames.put("first", "推送内容"); | |
1061 | + cnames.put("keyword1","推送关键词"); | |
1062 | + cnames.put("keyword2","推送关键词2"); | |
1063 | + cnames.put("remark", "推送备注"); | |
1064 | 1064 | httpServletResponse.setContentType("application/octet-stream"); |
1065 | 1065 | httpServletResponse.setCharacterEncoding("UTF-8"); |
1066 | 1066 | httpServletResponse.setHeader("Content-Disposition", "attachment;fileName=msg.xls"); |