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.
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 InvCountOrderResponse {
/**
* id
*/
private Integer id ;
/**
* 盘点单号
*/
private String orderId ;
/**
* 部门编码
*/
private String deptCode ;
/**
* 仓库编码
*/
private String invCode ;
/**
* 货位编码
*/
private String invSpaceCode ;
/**
* 入库扫码单据号,多个使用 , 隔开
*/
private String inOrderIds ;
/**
* 出库扫码单据号,多个使用 , 隔开
*/
private String outOrderIds ;
/**
* 盘点类型, 0: 整库盘点 1: 按货位盘点 2: 部分盘点
*/
private Integer countType ;
/**
* 状态 0: 未提交 1: 未审核 2: 已审核
*/
private Integer status ;
/**
* 盘点用户ID
*/
private String createUser ;
/**
* 创建时间
*/
private Date createTime ;
/**
* 更新时间
*/
private Date updateTime ;
/**
* 审核用户ID
*/
private String auditUser ;
/**
* 审核时间
*/
private Date auditTime ;
/**
* 备注字段
*/
private String remark ;
/**
* 部门名称
*/
private String deptName ;
/**
* 仓库名称
*/
private String invName ;
/**
* 货位名称
*/
private String invSpaceName ;
/**
* 盘点人名称
*/
private String createUserName ;
/**
* 审核人名称
*/
private String auditUserName ;
}