ZEngineeringGY.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package com.ruoyi.zdsz.domain;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableLogic;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import com.baomidou.mybatisplus.annotation.Version;
  6. import com.ruoyi.common.core.domain.BaseEntity;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. /**
  10. * 工业工程对象 z_engineering_gy
  11. *
  12. * @author ruoyi
  13. * @date 2024-01-02
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = true)
  17. @TableName("z_engineering_gy")
  18. public class ZEngineeringGY extends BaseEntity {
  19. private static final long serialVersionUID=1L;
  20. /**
  21. *
  22. */
  23. @TableId(value = "id")
  24. private String id;
  25. /**
  26. * 行政区
  27. */
  28. private String district;
  29. /**
  30. * 工程类型
  31. */
  32. private String enginType;
  33. /**
  34. * 建筑单位
  35. */
  36. private String constructUnit;
  37. /**
  38. * 项目负责人
  39. */
  40. private String projectHead;
  41. /**
  42. * 现场负责人
  43. */
  44. private String sceneHead;
  45. /**
  46. * 设计单位
  47. */
  48. private String designUnit;
  49. /**
  50. * 设计负责人
  51. */
  52. private String designHead;
  53. /**
  54. * 设计联系电话
  55. */
  56. private String designPhone;
  57. /**
  58. * 监理单位
  59. */
  60. private String supervisionUnit;
  61. /**
  62. * 监理负责人
  63. */
  64. private String supervisionHead;
  65. /**
  66. * 监理联系电话
  67. */
  68. private String supervisionPhone;
  69. /**
  70. * 工程名称
  71. */
  72. private String enginName;
  73. /**
  74. * 工程分类
  75. */
  76. private String enginClassification;
  77. /**
  78. * 乐观锁
  79. */
  80. @Version
  81. private Long version;
  82. /**
  83. * 备注
  84. */
  85. private String remark;
  86. /**
  87. * 删除标识
  88. */
  89. @TableLogic
  90. private String delFlag;
  91. private Double pePreset;
  92. private Double gcPreset;
  93. }