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/res/inout/ReceiveResponse.java

104 lines
1.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.res.inout;
import lombok.Data;
import java.util.Date;
@Data
public class ReceiveResponse {
private Long id;
/**
* 单据号
*/
private String billNo;
/**
* 单据日期
*/
private Date billDate;
/**
* 状态1.草稿2.未审核3.已审核,4.已拒绝)
*/
private Integer status;
/**
* 领用类型
*/
private String billType;
/**
* 领用说明
*/
private String remark;
/**
* 当前仓库
*/
private String invCode;
private String invName;
/**
* 所属部门
*/
private String deptCode;
private String deptName;
/**
* 创建人
*/
private String createUser;
private String createUserName;
/**
* 创建时间
*/
private Date createTime;
/**
* 审核人
*/
private String auditUser;
private String auditUserName;
/**
* 审核时间
*/
private Date auditTime;
/**
* 更新人
*/
private String updateUser;
private String updateUserName;
/**
* 更新时间
*/
private Date updateTime;
/**
* 审核说明
*/
private String auditRemark;
/**
* 目标仓库
*/
private String targetInvCode;
private String targetInvName;
/**
* 目标部门
*/
private String targetDeptCode;
private String targetDeptName;
private String billTypeName;
}