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.dev ;
import lombok.Data ;
import java.util.Date ;
/**
* 养护记录接口返回结果
*/
@Data
public class InvMAOrderResponse {
private Integer id ;
/**
* 养护记录号
*/
private String orderId ;
/**
* 分库码
*/
private String invCode ;
/**
* 货位码
*/
private String invSpaceCode ;
/**
* 状态 0: 草稿 1: 未审核 2: 已完成
*/
private Integer status ;
/**
* 养护日期
*/
private Date createTime ;
/**
* 更新时间
*/
private Date updateTime ;
/**
* 审核时间
*/
private Date auditTime ;
/**
* 养护人
*/
private String createUser ;
/**
* 审核人
*/
private String auditUser ;
/**
* 备注
*/
private String remark ;
/**
* 仓库名称
*/
private String invName ;
/**
* 货位名称
*/
private String invSpaceName ;
/**
* 创建人名称
*/
private String createUserName ;
/**
* 审核人名称
*/
private String auditUserName ;
}