package com.glxp.api.entity.purchase; import lombok.Data; import java.util.Date; /** * pur对象 pur_plan * * @author anthony.ywj * @date 2022-10-12 */ @Data public class PurPlanEntity { /** * */ private Integer id; /** * 单据号 */ private String billNo; /** * 单据日期 */ private Date billDate; /** * 状态(1.草稿,2.未审核,3.已审核) */ private Integer status; /** * 申购类型 */ private String billType; /** * 申购说明 */ private String remark; /** * 当前仓库 */ private String locStorageCode; /** * 当前分库 */ private String invWarehouseCode; /** * 所属部门 */ private String deptCode; /** * 审核人 */ private String auditBy; /** * 审核时间 */ private Date auditTime; private String createBy; /** * 创建时间 */ private Date createTime; private Date updateTime; private String auditRemark; private String stockOrderNo; //生成业务单据号 private String applyCreateBy; //申购人 private String applyAuditBy; //申购审核人 private String applyRemark; //申购说明 private String applyBillNo; //申购单据号,多单以逗号隔开 private String targetBillAction; private String targetSubInv; private String targetInv; }