template_parkingArea.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "templateName":"停车场",
  3. "templateCode":"parkingArea",
  4. "templateKey":"paId",
  5. "templateKeyName":"停车场ID",
  6. "searchCode": "num",
  7. "searchName": "停车场编号",
  8. "conditions": [
  9. {
  10. "name": "停车场编号",
  11. "inputType": "input",
  12. "code": "num",
  13. "whereCondition": "equal"
  14. },
  15. {
  16. "name": "停车场类型",
  17. "inputType": "select",
  18. "selectValue":"1001,2001",
  19. "selectValueName":"地上停车场,地下停车场",
  20. "code": "typeCd",
  21. "whereCondition": "equal"
  22. },
  23. {
  24. "name": "停车场ID",
  25. "inputType": "input",
  26. "code": "paId",
  27. "whereCondition": "equal"
  28. }
  29. ],
  30. "columns":[
  31. {
  32. "code":"num",
  33. "cnCode":"停车场编号",
  34. "desc":"必填,请填写停车场编号",
  35. "required":true,
  36. "hasDefaultValue":false,
  37. "inputType":"input",
  38. "limit":"maxin",
  39. "limitParam":"1,12",
  40. "limitErrInfo":"停车场编号不能超过12位",
  41. "show": true
  42. },
  43. {
  44. "code": "typeCd",
  45. "cnCode":"停车场类型",
  46. "desc":"必填,请选择停车场类型",
  47. "required":true,
  48. "hasDefaultValue":false,
  49. "inputType": "select",
  50. "selectValue":"1001,2001",
  51. "selectValueName":"地上停车场,地下停车场",
  52. "limit":"num",
  53. "limitParam":"",
  54. "limitErrInfo":"停车场类型格式错误",
  55. "show": true
  56. },
  57. {
  58. "code": "remark",
  59. "cnCode":"备注",
  60. "desc":"必填,请填写备注",
  61. "required":true,
  62. "hasDefaultValue":false,
  63. "inputType": "input",
  64. "limit":"maxin",
  65. "limitParam":"1,4000",
  66. "limitErrInfo":"备注太长",
  67. "show": false
  68. }
  69. ]
  70. }