template_feeReceipt.json 681 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "autoMove": true,
  3. "id": "receiptId",
  4. "name": "feeReceipt",
  5. "desc": "收据",
  6. "shareParam": "communityId",
  7. "shareColumn": "community_id",
  8. "shareName": "fee",
  9. "tableName": "fee_receipt",
  10. "param": {
  11. "receiptId": "receipt_id",
  12. "communityId": "community_id",
  13. "objType": "obj_type",
  14. "objId": "obj_id",
  15. "objName": "obj_name",
  16. "amount": "amount",
  17. "remark": "remark",
  18. "statusCd": "status_cd"
  19. },
  20. "required": [
  21. {
  22. "code": "communityId",
  23. "msg": "小区不能为空"
  24. },
  25. {
  26. "code": "amount",
  27. "msg": "金额不能为空"
  28. },
  29. {
  30. "code": "objName",
  31. "msg": "名称不能为空"
  32. }
  33. ]
  34. }