template_carInout.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "templateName":"车辆进场",
  3. "templateCode":"carInout",
  4. "templateKey":"inoutId",
  5. "templateKeyName":"进出场ID",
  6. "searchCode": "carNum",
  7. "searchName": "车牌号",
  8. "conditions": [
  9. {
  10. "name": "车辆状态",
  11. "inputType": "select",
  12. "selectValue":"100300,100400,100500,100600",
  13. "selectValueName":"进场状态,支付完成,离场状态,超时重新支付",
  14. "code": "state",
  15. "whereCondition": "equal"
  16. },
  17. {
  18. "name": "车牌号",
  19. "inputType": "input",
  20. "code": "carNum",
  21. "whereCondition": "equal"
  22. },
  23. {
  24. "name": "进出场ID",
  25. "inputType": "input",
  26. "code": "inoutId",
  27. "whereCondition": "equal"
  28. },
  29. {
  30. "name": "进场开始时间",
  31. "inputType": "input",
  32. "code": "startTime",
  33. "whereCondition": "equal"
  34. },
  35. {
  36. "name": "进场结束时间",
  37. "inputType": "input",
  38. "code": "endTime",
  39. "whereCondition": "equal"
  40. }
  41. ],
  42. "columns":[
  43. {
  44. "code":"state",
  45. "cnCode":"车辆状态",
  46. "desc":"必填,请填写车辆状态",
  47. "required":true,
  48. "hasDefaultValue":false,
  49. "inputType":"select",
  50. "selectValue":"1111,2222",
  51. "selectValueName":"黑名单,白名单",
  52. "limit":"num",
  53. "limitParam":"",
  54. "limitErrInfo":"名单类型格式错误",
  55. "show": true
  56. },
  57. {
  58. "code": "carNum",
  59. "cnCode":"车牌号",
  60. "desc":"必填,请填写车牌号",
  61. "required":true,
  62. "hasDefaultValue":false,
  63. "inputType": "input",
  64. "limit":"maxin",
  65. "limitParam":"1,12",
  66. "limitErrInfo":"车牌号大于12位",
  67. "show": true
  68. },
  69. {
  70. "code": "inTime",
  71. "cnCode":"进场时间",
  72. "desc":"必填,请选择进场时间",
  73. "required":true,
  74. "hasDefaultValue":false,
  75. "inputType": "input",
  76. "limit":"dateTime",
  77. "limitParam":"",
  78. "limitErrInfo":"不是有效的时间格式",
  79. "show": true
  80. },
  81. {
  82. "code": "outTime",
  83. "cnCode":"出场时间",
  84. "desc":"必填,请选择出场时间",
  85. "required":true,
  86. "hasDefaultValue":false,
  87. "inputType": "input",
  88. "limit":"dateTime",
  89. "limitParam":"",
  90. "limitErrInfo":"不是有效的时间格式",
  91. "show": true
  92. }
  93. ]
  94. }