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-spms-java/src/main/java/com/glxp/api/entity/purchase/PurArrivalEntity.java

136 lines
2.5 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.glxp.api.entity.purchase;
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 = "pur_arrival")
public class PurArrivalEntity {
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 单据号
*/
@TableField(value = "billNo")
private String billNo;
/**
* 单据日期
*/
@TableField(value = "billDate")
private Date billDate;
/**
* 状态1.草稿2.未审核3.已审核)
*/
@TableField(value = "`status`")
private Integer status;
/**
* 订单类型
*/
@TableField(value = "billType")
private String billType;
/**
* 订单说明
*/
@TableField(value = "remark")
private String remark;
/**
* 当前分库
*/
@TableField(value = "invCode")
private String invCode;
/**
* 所属部门
*/
@TableField(value = "deptCode")
private String deptCode;
/**
* 创建人
*/
@TableField(value = "`createUser`")
private String createUser;
/**
* 创建时间
*/
@TableField(value = "createTime")
private Date createTime;
/**
* 审核人
*/
@TableField(value = "auditUser")
private String auditUser;
/**
* 审核时间
*/
@TableField(value = "auditTime")
private Date auditTime;
/**
* 审核说明
*/
@TableField(value = "auditRemark")
private String auditRemark;
/**
* 更新时间
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
* 更新人
*/
@TableField(value = "updateUser")
private String updateUser;
/**
* 申购人
*/
@TableField(value = "applyCreateUser")
private String applyCreateUser;
/**
* 申购审核人
*/
@TableField(value = "applyAuditUser")
private String applyAuditUser;
/**
* 申购说明
*/
@TableField(value = "applyRemark")
private String applyRemark;
/**
* 申购单据号,多单以逗号隔开
*/
@TableField(value = "applyBillNo")
private String applyBillNo;
/**
* 生成采购入库业务单据
*/
@TableField(value = "stockOrderNo")
private String stockOrderNo;
}