java110
2021-06-16 755262ba9a1a3c0573a0e910bbd0a353e9e2a2c5
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
  "templateName":"车辆进场",
  "templateCode":"carInout",
  "templateKey":"inoutId",
  "templateKeyName":"进出场ID",
  "searchCode": "carNum",
  "searchName": "车牌号",
  "conditions": [
    {
      "name": "车辆状态",
      "inputType": "select",
      "selectValue":"100300,100400,100500,100600",
      "selectValueName":"进场状态,支付完成,离场状态,超时重新支付",
      "code": "state",
      "whereCondition": "equal"
    },
    {
      "name": "车牌号",
      "inputType": "input",
      "code": "carNum",
      "whereCondition": "equal"
    },
    {
      "name": "进出场ID",
      "inputType": "input",
      "code": "inoutId",
      "whereCondition": "equal"
    },
    {
      "name": "进场开始时间",
      "inputType": "input",
      "code": "startTime",
      "whereCondition": "equal"
    },
    {
      "name": "进场结束时间",
      "inputType": "input",
      "code": "endTime",
      "whereCondition": "equal"
    }
  ],
  "columns":[
    {
      "code":"state",
      "cnCode":"车辆状态",
      "desc":"必填,请填写车辆状态",
      "required":true,
      "hasDefaultValue":false,
      "inputType":"select",
      "selectValue":"1111,2222",
      "selectValueName":"黑名单,白名单",
      "limit":"num",
      "limitParam":"",
      "limitErrInfo":"名单类型格式错误",
      "show": true
    },
    {
      "code": "carNum",
      "cnCode":"车牌号",
      "desc":"必填,请填写车牌号",
      "required":true,
      "hasDefaultValue":false,
      "inputType": "input",
      "limit":"maxin",
      "limitParam":"1,12",
      "limitErrInfo":"车牌号大于12位",
      "show": true
    },
    {
      "code": "inTime",
      "cnCode":"进场时间",
      "desc":"必填,请选择进场时间",
      "required":true,
      "hasDefaultValue":false,
      "inputType": "input",
      "limit":"dateTime",
      "limitParam":"",
      "limitErrInfo":"不是有效的时间格式",
      "show": true
    },
    {
      "code": "outTime",
      "cnCode":"出场时间",
      "desc":"必填,请选择出场时间",
      "required":true,
      "hasDefaultValue":false,
      "inputType": "input",
      "limit":"dateTime",
      "limitParam":"",
      "limitErrInfo":"不是有效的时间格式",
      "show": true
    }
  ]
}