TbDeclare.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. package com.pj.project.tb_declare;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import lombok.experimental.Accessors;
  8. /**
  9. * Model: tb_declare --
  10. * @author lzm
  11. */
  12. @Data
  13. @Accessors(chain = true)
  14. @TableName(TbDeclare.TABLE_NAME)
  15. @EqualsAndHashCode(callSuper = false)
  16. public class TbDeclare implements Serializable {
  17. // ---------- 模块常量 ----------
  18. /**
  19. * 序列化版本id
  20. */
  21. private static final long serialVersionUID = 1L;
  22. /**
  23. * 此模块对应的表名
  24. */
  25. public static final String TABLE_NAME = "tb_declare";
  26. /**
  27. * 此模块对应的权限码
  28. */
  29. public static final String PERMISSION_CODE = "tb-declare";
  30. // ---------- 表中字段 ----------
  31. /**
  32. * 主键
  33. */
  34. private String id;
  35. /**
  36. * 业务id
  37. */
  38. private String businessId;
  39. private String declarePeople;
  40. private String declarePhone;
  41. /**
  42. * 产品学名
  43. */
  44. private String goodsName;
  45. /**
  46. * 毛重
  47. */
  48. private Double grossWeight;
  49. /**
  50. * 件数
  51. */
  52. private Integer num;
  53. /**
  54. * 生产日期
  55. */
  56. private String productionDate;
  57. /**
  58. * 保质期
  59. */
  60. private Integer expirationDate;
  61. /**
  62. * 储存条件
  63. */
  64. private String storageMode;
  65. /**
  66. * 生产方式
  67. */
  68. private String productionMode;
  69. /**
  70. * 原产国
  71. */
  72. private String origin;
  73. /**
  74. * 进口冷链食品生产商注册号
  75. */
  76. private String producerCode;
  77. /**
  78. * 货主单位
  79. */
  80. private String sendUnit;
  81. /**
  82. * 收货单位
  83. */
  84. private String receiveUnit;
  85. /**
  86. * 货物流向
  87. */
  88. private String route;
  89. /**
  90. * 司机姓名
  91. */
  92. private String driverName;
  93. /**
  94. * 联系电话(司机)
  95. */
  96. private String driverPhone;
  97. /**
  98. * 代理商
  99. */
  100. private String agent;
  101. /**
  102. * 联系电话(代理人)
  103. */
  104. private String agentPhone;
  105. /**
  106. * 运输车车牌
  107. */
  108. private String chinaCarNo;
  109. /**
  110. * 越南车车牌
  111. */
  112. private String carNo;
  113. /**
  114. * 海关报关单据
  115. */
  116. private String customProof;
  117. /**
  118. * 进口检验检疫证书
  119. */
  120. private String quarantineProof;
  121. /**
  122. * 商铺(互助组)
  123. */
  124. private String shop;
  125. /**
  126. * 生产批号
  127. */
  128. private String productionCode;
  129. /**
  130. * 柜号
  131. */
  132. private String containerCode;
  133. private Date createTime;
  134. private String declareNo;
  135. }