template_floor.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "templateName":"楼",
  3. "templateCode":"floor",
  4. "templateKey":"floorId",
  5. "templateKeyName":"楼ID",
  6. "searchCode": "floorNum",
  7. "searchName": "楼编号",
  8. "columns":[
  9. {
  10. "code":"name",
  11. "cnCode":"楼名称",
  12. "desc":"必填,请填写名称,如一号楼",
  13. "required":true,
  14. "hasDefaultValue":false,
  15. "inputType":"input",
  16. "limit":"maxLength",
  17. "limitParam":"50",
  18. "limitErrInfo":"楼名称不能超过50"
  19. },
  20. {
  21. "code":"floorNum",
  22. "cnCode":"楼编号",
  23. "desc":"必填,请填写楼编号如 C_001",
  24. "required":true,
  25. "hasDefaultValue":false,
  26. "inputType":"input",
  27. "limit":"maxin",
  28. "limitParam":"1,12",
  29. "limitErrInfo":"楼编号必须在1至12字符之间"
  30. },
  31. {
  32. "code":"remark",
  33. "cnCode":"备注",
  34. "desc":"可填,请填写备注",
  35. "required":false,
  36. "hasDefaultValue":false,
  37. "defaultValue":"",
  38. "inputType":"textarea",
  39. "limit":"maxLength",
  40. "limitParam":"200",
  41. "limitErrInfo":"备注内容不能超过200"
  42. }
  43. ]
  44. }