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/DeviceReceiveOrderEntity.java

115 lines
1.5 KiB
Java

package com.glxp.api.entity.inv;
import lombok.Data;
import java.util.Date;
@Data
public class DeviceReceiveOrderEntity {
2 years ago
/**
* id
*/
private Integer id;
/**
*
*/
private String orderId;
/**
*
*/
2 years ago
private String fromDeptCode;
/**
*
*/
private String fromInvCode;
/**
*
*/
private String fromInvSpaceCode;
/**
*
*/
private String deptCode;
2 years ago
/**
*
*/
private String invCode;
/**
*
*/
private String invSpaceCode;
/**
* 0稿 1 2
*/
private Integer status;
/**
*
*/
private String createUser;
/**
*
*/
private String auditUser;
2 years ago
/**
*
*/
private String receiveUser;
/**
*
*/
private Date createTime;
/**
*
*/
private Date updateTime;
/**
*
*/
private String remark;
2 years ago
/**
*
*/
private String deptName;
2 years ago
/**
*
*/
private String invName;
2 years ago
/**
*
*/
private String invSpaceName;
2 years ago
/**
*
*/
private String fromDeptName;
2 years ago
/**
*
*/
private String fromInvName;
2 years ago
/**
*
*/
private String fromInvSpaceName;
}