Commit 6b03436d4f5d44b1a09df43f18326acb8f3349a5
1 parent
f6b6014f54
Exists in
master
and in
6 other branches
配置
Showing 2 changed files with 7 additions and 3 deletions
platform-common/src/main/java/com/lyms/platform/common/enums/SmsServiceEnums.java
View file @
6b03436
... | ... | @@ -40,7 +40,13 @@ |
40 | 40 | TSYYTX(26,"儿童听力筛查预约提醒",14,"2"), |
41 | 41 | TYZDYYTX(27,"儿童听力诊断预约提醒",14,"2"), |
42 | 42 | TLZDYYTX(28,"儿童听力随访预约提醒",14,"2"), |
43 | - YFXXKCTX(29,"孕妇学校课程提醒",21,"1,3"); | |
43 | + YFXXKCTX(29,"孕妇学校课程提醒",21,"1,3"), | |
44 | + YFGQTX(30,"孕妇过期提醒",0,""), | |
45 | + CJGQTX(31,"孕妇产检过期提醒",30,"1"), | |
46 | + ETGQTX(32,"儿童过期提醒",0,""), | |
47 | + TSGQTX(33,"儿童听筛过期提醒",32,"2"), | |
48 | + YKGQTX(34,"儿童眼科过期提醒",32,"2"), | |
49 | + EBGQTX(35,"儿童儿保过期提醒",32,"2"); | |
44 | 50 | |
45 | 51 | private SmsServiceEnums(int id,String name,int pid,String serviceObj){ |
46 | 52 | this.id = id; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
6b03436