123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- package com.pj.project.tb_declare;
- import java.io.Serializable;
- import java.util.Date;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * Model: tb_declare --
- * @author lzm
- */
- @Data
- @Accessors(chain = true)
- @TableName(TbDeclare.TABLE_NAME)
- @EqualsAndHashCode(callSuper = false)
- public class TbDeclare implements Serializable {
- // ---------- 模块常量 ----------
- /**
- * 序列化版本id
- */
- private static final long serialVersionUID = 1L;
- /**
- * 此模块对应的表名
- */
- public static final String TABLE_NAME = "tb_declare";
- /**
- * 此模块对应的权限码
- */
- public static final String PERMISSION_CODE = "tb-declare";
- // ---------- 表中字段 ----------
- /**
- * 主键
- */
- private String id;
- /**
- * 业务id
- */
- private String businessId;
- private String declarePeople;
- private String declarePhone;
- /**
- * 产品学名
- */
- private String goodsName;
- /**
- * 毛重
- */
- private Double grossWeight;
- /**
- * 件数
- */
- private Integer num;
- /**
- * 生产日期
- */
- private String productionDate;
- /**
- * 保质期
- */
- private Integer expirationDate;
- /**
- * 储存条件
- */
- private String storageMode;
- /**
- * 生产方式
- */
- private String productionMode;
- /**
- * 原产国
- */
- private String origin;
- /**
- * 进口冷链食品生产商注册号
- */
- private String producerCode;
- /**
- * 货主单位
- */
- private String sendUnit;
- /**
- * 收货单位
- */
- private String receiveUnit;
- /**
- * 货物流向
- */
- private String route;
- /**
- * 司机姓名
- */
- private String driverName;
- /**
- * 联系电话(司机)
- */
- private String driverPhone;
- /**
- * 代理商
- */
- private String agent;
- /**
- * 联系电话(代理人)
- */
- private String agentPhone;
- /**
- * 运输车车牌
- */
- private String chinaCarNo;
- /**
- * 越南车车牌
- */
- private String carNo;
- /**
- * 海关报关单据
- */
- private String customProof;
- /**
- * 进口检验检疫证书
- */
- private String quarantineProof;
- /**
- * 商铺(互助组)
- */
- private String shop;
- /**
- * 生产批号
- */
- private String productionCode;
- /**
- * 柜号
- */
- private String containerCode;
- private Date createTime;
- private String declareNo;
-
- }
|