123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- package com.pj.project.tb_business;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.ArrayList;
- import java.util.Date;
- import java.util.List;
- import com.baomidou.mybatisplus.annotation.*;
- import com.baomidou.mybatisplus.extension.activerecord.Model;
- import com.pj.project.tb_business_item.TbBusinessItem;
- import lombok.EqualsAndHashCode;
- import lombok.Data;
- import lombok.experimental.Accessors;
- /**
- * Model: tb_business -- 入境登记
- * @author qzy
- */
- @Data
- @Accessors(chain = true)
- @TableName(TbBusiness.TABLE_NAME)
- @EqualsAndHashCode(callSuper = false)
- public class TbBusiness extends Model<TbBusiness> implements Serializable {
- // ---------- 模块常量 ----------
- /**
- * 序列化版本id
- */
- private static final long serialVersionUID = 1L;
- /**
- * 此模块对应的表名
- */
- public static final String TABLE_NAME = "tb_business";
- /**
- * 此模块对应的权限码
- */
- public static final String PERMISSION_CODE = "tb-business";
- public static final String PERMISSION_LIST = "tb-business-list";
- public static final String PERMISSION_CONFIRM = "tb-business-confirm";
- public static final String PERMISSION_PAY = "tb-business-pay";
- public static final String PERMISSION_INPUT = "tb-business-add";
- // ---------- 表中字段 ----------
- /**
- * 主键
- */
- private String id;
- /**
- * 客户id
- */
- private String customerId;
- /**
- * 客户名称
- */
- private String customerName;
- /**
- * 编号
- */
- private String no;
- /**
- * 车牌号
- */
- private String cardNo;
- /**
- * 车规格
- */
- private String cardSize;
- /**
- * 载重(kg)
- */
- private Double netWeight;
- /**
- * 商品
- */
- private String goodsName;
- /**
- * 商品编号
- */
- private String goodsCode;
- /**
- * 司机名称
- */
- private String driverName;
- /**
- * 司机id
- */
- private String driverId;
- /**
- * 司机联系号码
- */
- private String driverPhone;
- /**
- * 司机身份证
- */
- private String driverIdCard;
- /**
- * 支付凭证
- */
- private String payTicket;
- /**
- * 预计进边境日期
- */
- private String expectInDay;
- /**
- * 实际进边境日期
- */
- private Date realInDay;
- /**
- * 实际进境时间
- */
- private Date realInTime;
- /**
- * 入场通道
- */
- private String inChannel;
- /**
- * 支付状态(1=未支付,2=已支付,3=运营人员确认支付)
- */
- private Integer payStatus=1;
- /**
- * 支付时间
- */
- private Date payTime;
- /**
- * 支付方式(1=线下支付,2现金支付,3=第三方支付)
- */
- private Integer payType=1;
- private String payBy;
- /**
- * 离境时间
- */
- private Date outDayTime;
- /**
- * 出场通道
- */
- private String outChannel;
- /**
- * 停车费用
- */
- private BigDecimal partMoney;
- /**
- * 停车时常(分)
- */
- private Long partTime;
- private BigDecimal itemPrice;
- private BigDecimal totalMoney;
- private Date createTime;
- private String createBy;
- private Integer confirmInput;
- private Date confirmInputTime;
- private String confirmInputBy;
- private Integer adminConfirmPay;
- private Date adminConfirmPayTime;
- private String adminConfirmPayBy;
- private transient String itemJson;
- @TableField(exist = false)
- private List<TbBusinessItem>items=new ArrayList<>();
-
- }
|