ErpBdRawMaterial.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package vip.xiaonuo.erp.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import java.io.Serializable;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. import lombok.experimental.Accessors;
  9. /**
  10. * <p>
  11. * 原材料列表
  12. * </p>
  13. *
  14. * @author author
  15. * @since 2025-03-17
  16. */
  17. @Data
  18. @EqualsAndHashCode(callSuper = false)
  19. @Accessors(chain = true)
  20. @TableName("erp_bd_raw_material")
  21. public class ErpBdRawMaterial implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Integer id;
  25. /**
  26. * erp 字段
  27. */
  28. private String erpFnumber;
  29. /**
  30. * 单位
  31. */
  32. private String unit;
  33. /**
  34. * 换算值
  35. */
  36. private String conver;
  37. /**
  38. * 0是大类 1 是其他
  39. */
  40. private Integer parent;
  41. /**
  42. * 检测项目,字符串,用,分割
  43. */
  44. private String testingItems;
  45. private String orgId;
  46. private String deleteFlag;
  47. /**
  48. * 名字
  49. */
  50. private String fname;
  51. private String fspecification;
  52. private Integer materialType;
  53. }