123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- package com.pj.project.tb_disinfect;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- import cn.hutool.core.util.StrUtil;
- import com.baomidou.mybatisplus.annotation.*;
- import com.baomidou.mybatisplus.extension.activerecord.Model;
- import lombok.EqualsAndHashCode;
- import lombok.Data;
- import lombok.experimental.Accessors;
- /**
- * Model: tb_disinfect -- 消毒申请单
- * @author qzy
- */
- @Data
- @Accessors(chain = true)
- @TableName(TbDisinfect.TABLE_NAME)
- @EqualsAndHashCode(callSuper = false)
- public class TbDisinfect extends Model<TbDisinfect> implements Serializable {
- // ---------- 模块常量 ----------
- /**
- * 序列化版本id
- */
- private static final long serialVersionUID = 1L;
- /**
- * 此模块对应的表名
- */
- public static final String TABLE_NAME = "tb_disinfect";
- /**
- * 此模块对应的权限码
- */
- public static final String PERMISSION_CODE = "tb-disinfect";
- // ---------- 表中字段 ----------
- /**
- * 主键
- */
- private String id;
- private String customerId;
- private String customerName;
- /**
- * 发货人
- */
- private String sendPeople;
- /**
- * 收货人
- */
- private String receivePeople;
- /**
- * 品名
- */
- private String goodsName;
- /**
- * 产地
- */
- private String origin;
- /**
- * 数量
- */
- private Integer num;
- /**
- * 重量
- */
- private Double grossWeight;
- /**
- * 规格
- */
- private String unit;
- /**
- * 包装
- */
- private String pack;
- /**
- * 标记
- */
- private String flag;
- /**
- * 号码
- */
- private String phone;
- /**
- * 启运地
- */
- private String sourceAddress;
- /**
- * 到达口岸
- */
- private String arrivePart;
- /**
- * 运输工具
- */
- private String carName;
- /**
- * 运输工具号码
- */
- private String carNo;
- /**
- * 中国运输工具
- */
- private String chinaCarName;
- /**
- * 中国运输号码
- */
- private String chinaCarNo;
- /**
- * 备注
- */
- private String remark;
- /**
- * 申请单位
- */
- private String applyUnit;
- /**
- * 申请人
- */
- private String declarePeople;
- /**
- * 申请人联系号码
- */
- private String declarePhone;
- /**
- * 申请时间
- */
- private String applyTime;
- /**
- * 受理人
- */
- private String acceptPeople;
- /**
- * 受理时间
- */
- private String acceptTime;
- /**
- * 计费(分)
- */
- private BigDecimal money;
- private String code;
-
- }
|