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.
63 lines
1.0 KiB
Java
63 lines
1.0 KiB
Java
package com.glxp.api.res.basic;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
public class EntrustReceResponse {
|
|
private Integer id;
|
|
private String action;
|
|
private String entrustInv;
|
|
private Long entrustUser;
|
|
private String userId;
|
|
private String entrustAction;
|
|
private Date updateTime;
|
|
private String remark;
|
|
private boolean finishRece;
|
|
private String curName;
|
|
|
|
private String entrustName;
|
|
|
|
/**
|
|
* 委托验收人
|
|
*/
|
|
private String employeeName;
|
|
|
|
/**
|
|
* 分库名称
|
|
*/
|
|
private String entrustInvName;
|
|
|
|
/**
|
|
* 当前仓库编码
|
|
*/
|
|
private String curInv;
|
|
|
|
/**
|
|
* 当前仓库名称
|
|
*/
|
|
private String curInvName;
|
|
|
|
/**
|
|
* 委托分库编码
|
|
*/
|
|
private String entrustSubInv;
|
|
|
|
/**
|
|
* 当前分库编码
|
|
*/
|
|
private String invWarehouseCode;
|
|
|
|
/**
|
|
* 当前分库名称
|
|
*/
|
|
private String invWarehouseName;
|
|
|
|
/**
|
|
* 委托分库名称
|
|
*/
|
|
private String entrustSubInvName;
|
|
|
|
}
|