ZEngineeringMaterial.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package com.ruoyi.zdsz.domain;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Data;
  4. import lombok.EqualsAndHashCode;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. import java.math.BigDecimal;
  8. import com.ruoyi.common.core.domain.BaseEntity;
  9. /**
  10. * 工程用料对象 z_engineering_material
  11. *
  12. * @author ruoyi
  13. * @date 2023-12-27
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = true)
  17. @TableName("z_engineering_material")
  18. public class ZEngineeringMaterial extends BaseEntity {
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. *
  22. */
  23. @TableId(value = "id")
  24. private String id;
  25. /**
  26. * 详情id
  27. */
  28. private String detailsId;
  29. /**
  30. * 上门类型
  31. */
  32. private String visitType;
  33. /**
  34. * 自闭阀类型
  35. */
  36. private String selfClosingValveType;
  37. /**
  38. * 腐蚀等级
  39. */
  40. private String corrosionLevel;
  41. /**
  42. * 品牌
  43. */
  44. private String brand;
  45. /**
  46. * 材质
  47. */
  48. private String materialQuality;
  49. /**
  50. * 规格
  51. */
  52. private String specifications;
  53. /**
  54. * 数量
  55. */
  56. private Long number;
  57. /**
  58. * 乐观锁
  59. */
  60. @Version
  61. private String version;
  62. /**
  63. * 备注
  64. */
  65. private String remark;
  66. /**
  67. * 删除标识
  68. */
  69. @TableLogic
  70. private String delFlag;
  71. }