Fields.php 863 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. /**
  3. * 字段列表
  4. * @author auto create
  5. */
  6. class Fields
  7. {
  8. /**
  9. * 是否自定义字段
  10. **/
  11. public $customized;
  12. /**
  13. * 日期格式
  14. **/
  15. public $format;
  16. /**
  17. * 字段展示名
  18. **/
  19. public $label;
  20. /**
  21. * 字段名称
  22. **/
  23. public $name;
  24. /**
  25. * 是否可空
  26. **/
  27. public $nillable;
  28. /**
  29. * 是否引用关联
  30. **/
  31. public $quote;
  32. /**
  33. * 引用的关联对象的字段列表
  34. **/
  35. public $reference_fields;
  36. /**
  37. * 关联对象名称
  38. **/
  39. public $reference_to;
  40. /**
  41. * 对MasterDetail类型有效:roll-up summary字段列表
  42. **/
  43. public $roll_up_summary_fields;
  44. /**
  45. * 选项列表
  46. **/
  47. public $select_options;
  48. /**
  49. * 字段类型
  50. **/
  51. public $type;
  52. /**
  53. * 日期单位/金额单位
  54. **/
  55. public $unit;
  56. }
  57. ?>