1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| {
| "autoMove": true,
| "id": "templateId",
| "name": "wechatSmsTemplate",
| "desc": "微信消息模板",
| "shareParam": "communityId",
| "shareColumn": "community_id",
| "shareName": "store",
| "tableName": "wechat_sms_template",
| "param": {
| "templateId": "template_id",
| "wechatId": "wechat_id",
| "smsTemplateId": "sms_template_id",
| "templateType": "template_type",
| "communityId": "community_id",
| "remarks": "remarks",
| "statusCd": "status_cd"
| },
| "required": [
| {
| "code": "wechatId",
| "msg": "微信ID不能为空"
| },
| {
| "code": "smsTemplateId",
| "msg": "模板ID不能为空"
| },
| {
| "code": "templateType",
| "msg": "模板类型不能为空"
| },
| {
| "code": "communityId",
| "msg": "小区ID不能为空"
| }
| ]
| }
|
|