You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-cpt-java/src/main/java/com/glxp/api/entity/trace/TraceOrderEntity.java

150 lines
3.0 KiB
Java

package com.glxp.api.entity.trace;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
*
*/
@Data
@TableName(value = "trace_order")
public class TraceOrderEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Long id;
/**
*
*/
@TableField(value = "billNo")
private String billNo;
/**
*
*/
@TableField(value = "billDate")
private String billDate;
/**
* 1:2
*/
@TableField(value = "inOutType")
private Byte inOutType;
/**
*
*/
@TableField(value = "billType")
private String billType;
/**
*
*/
@TableField(value = "fromCorp")
private String fromCorp;
/**
*
*/
@TableField(value = "fromCorpCreditNum")
private String fromCorpCreditNum;
/**
*
*/
@TableField(value = "toCorp")
private String toCorp;
/**
*
*/
@TableField(value = "toCorpCreditNum")
private String toCorpCreditNum;
/**
*
*/
@TableField(value = "`createUser`")
private Long createUser;
/**
* ID
*/
@TableField(value = "companyIdFk")
private Long companyIdFk;
/**
*
*/
@TableField(value = "clientType")
2 years ago
private Integer clientType;
/**
* 退退
*/
@TableField(value = "returnReason")
private String returnReason;
/**
*
*/
@TableField(value = "destoryReason")
private String destoryReason;
/**
*
*/
@TableField(value = "excuseUser")
private String excuseUser;
/**
*
*/
@TableField(value = "excuseCode")
private String excuseCode;
/**
*
*/
@TableField(value = "superviserUser")
private String superviserUser;
/**
*
*/
@TableField(value = "superviserCode")
private String superviserCode;
/**
* ID
*/
@TableField(value = "uploadUser")
private Long uploadUser;
/**
*
*/
@TableField(value = "remark")
private String remark;
/**
*
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
2 years ago
*
*/
2 years ago
@TableField(value = "traceProductIdFk")
private Long traceProductIdFk;
private static final long serialVersionUID = 1L;
}