QualityInfoPo.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.fjhx.wms.entity.quality;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.ruoyi.common.core.domain.BasePo;
  4. import lombok.Getter;
  5. import lombok.Setter;
  6. /**
  7. * <p>
  8. * 质检
  9. * </p>
  10. *
  11. * @author
  12. * @since 2023-04-26
  13. */
  14. @Getter
  15. @Setter
  16. @TableName("quality_info")
  17. public class QualityInfoPo extends BasePo {
  18. /**
  19. * 1采购到货质检 2京东退货质检
  20. */
  21. private Integer type;
  22. /**
  23. * 质检单号
  24. */
  25. private String code;
  26. /**
  27. * 业务id(采购待入库id)
  28. */
  29. private Long bussinessId;
  30. /**
  31. * 业务编码
  32. */
  33. private String bussinessCode;
  34. /**
  35. * 仓库id
  36. */
  37. private Long warehouseId;
  38. /**
  39. * 采购单id
  40. */
  41. private Long purchaseId;
  42. /**
  43. * 采购单号
  44. */
  45. private String purchaseCode;
  46. /**
  47. * 状态 1未质检 2部分质检 3已质检
  48. */
  49. private Integer status;
  50. /**
  51. * 质检结果 1合格 0不合格
  52. */
  53. private Integer resultType;
  54. }