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/inv/DeviceReceiveOrderResponse....

134 lines
1.8 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.inv;
import lombok.Data;
import java.util.Date;
/**
* 设备领用记录响应结果
*/
@Data
public class DeviceReceiveOrderResponse {
/**
* id
*/
private Integer id;
/**
* 领用记录号
*/
private String orderId;
/**
* 领用部门
*/
private String fromDeptCode;
/**
* 领用仓库
*/
private String fromInvCode;
/**
* 领用货位
*/
private String fromInvSpaceCode;
/**
* 接收部门
*/
private String deptCode;
/**
* 接收仓库
*/
private String invCode;
/**
* 接收货位
*/
private String invSpaceCode;
/**
* 状态 0草稿 1未审核 2已审核
*/
private Integer status;
/**
* 创建人
*/
private String createUser;
/**
* 创建人
*/
private String createUserName;
/**
* 审核人
*/
private String auditUser;
/**
* 领用人
*/
private String receiveUserName;
/**
* 领用人
*/
private String receiveUser;
/**
* 领用时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 备注
*/
private String remark;
/**
* 接收部门
*/
private String deptName;
/**
* 接收仓库
*/
private String invName;
/**
* 接收货位
*/
private String invSpaceName;
/**
* 领用部门名称
*/
private String fromDeptName;
/**
* 领用仓库名称
*/
private String fromInvName;
/**
* 领用货位名称
*/
private String fromInvSpaceName;
private String auditUserName;
private Integer type;
}