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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
| {
| "templateName":"公告",
| "templateCode":"notice",
| "templateKey":"noticeId",
| "templateKeyName":"公告ID",
| "columns":[
| {
| "code":"title",
| "cnCode":"标题",
| "desc":"必填,请填写标题",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"maxin",
| "limitParam":"4,100",
| "limitErrInfo":"小区名称必须在4至100字符之间"
| },
| {
| "code":"noticeTypeCd",
| "cnCode":"公告类型",
| "desc":"必填,请选择公告类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"select",
| "selectValue":"1000,1001,1002",
| "selectValueName":"业主通知,员工通知,小区通知",
| "limit":"maxLength",
| "limitParam":"200",
| "limitErrInfo":"公告类型错误"
| },
| {
| "code":"context",
| "cnCode":"公告内容",
| "desc":"必填,请填写公告内容",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"maxLength",
| "limitParam":"500",
| "limitErrInfo":"公告内容不能超过500个字"
| },
| {
| "code":"startTime",
| "cnCode":"开始时间",
| "desc":"必选,请填写开始时间 2019-01-02",
| "required":true,
| "hasDefaultValue":false,
| "defaultValue":"",
| "inputType":"input",
| "limit":"date",
| "limitParam":"",
| "limitErrInfo":"开始时间不是有效的日志"
| }
|
| ]
| }
|
|