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.purchase ;
import lombok.Data ;
import java.util.Date ;
@Data
public class PurArrivalResponse {
/**
*
*/
private Integer id ;
/**
* 单据号
*/
private String billNo ;
/**
* 单据日期
*/
private Date billDate ;
/**
* 状态( 1.草稿, 2.未审核, 3.已审核)
*/
private Integer status ;
/**
* 申购类型
*/
private String billType ;
/**
* 申购说明
*/
private String remark ;
private String invCode ;
/**
* 所属部门
*/
private String deptCode ;
/**
* 审核人
*/
private String auditBy ;
/**
* 审核时间
*/
private Date auditTime ;
private String createBy ;
/**
* 创建时间
*/
private Date createTime ;
private Date updateTime ;
private String invName ;
private String subInvName ;
private String deptName ;
private String auditRemark ;
private String applyCreateBy ; //申购人
private String applyAuditBy ; //申购审核人
private String applyRemark ; //申购说明
private String applyBillNo ; //申购单据号,多单以逗号隔开
private String stockOrderNo ;
private String createUser ;
private String updateUser ;
private String createUserName ;
private String auditUserName ;
private String supId ;
private Integer arrivalCount ;
private String supName ;
}