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-wms-java/src/main/java/com/glxp/api/entity/inv/InvPreinOrderEntity.java

93 lines
1.7 KiB
Java

package com.glxp.api.entity.inv;
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 lombok.Data;
import java.util.Date;
@Data
@TableName(value = "inv_prein_order")
public class InvPreinOrderEntity {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
/**
* 单据号
*/
@TableField(value = "billNo")
private String billNo;
/**
* 往来单位
*/
@TableField(value = "fromCorp")
private String fromCorp;
/**
* 来源
*/
@TableField(value = "fromType")
private String fromType;
/**
* 创建人
*/
@TableField(value = "`createUser`")
private String createUser;
/**
* 创建时间
*/
@TableField(value = "createTime")
private Date createTime;
/**
* 更新人
*/
@TableField(value = "updateUser")
private String updateUser;
/**
* 更新时间
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
* 验收人
*/
@TableField(value = "reviewUser")
private String reviewUser;
/**
* 验收时间
*/
@TableField(value = "auditTime")
private Date auditTime;
/**
* 客户ID
*/
@TableField(value = "customerId")
private Integer customerId;
@TableField(value = "deptCode")
private String deptCode;
/**
* 当前仓库
*/
@TableField(value = "invCode")
private String invCode;
/**
* 备注
*/
@TableField(value = "remark")
private String remark;
}