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-spms-java/src/main/java/com/glxp/api/req/purchase/PurDeliveryRequest.java

71 lines
1015 B
Java

This file contains ambiguous Unicode characters!

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.req.purchase;
import com.glxp.api.util.page.ListPageRequest;
import lombok.Data;
import java.util.Date;
@Data
public class PurDeliveryRequest extends ListPageRequest {
private Long id;
/**
* 单据号
*/
private String billNo;
/**
* 单据日期
*/
private Date billDate;
/**
* 状态1.草稿2.未审核3.已审核)
*/
private Integer status;
/**
* 申购类型
*/
private Long billType;
/**
* 申购说明
*/
private String remark;
/**
* 当前仓库
*/
private String invCode;
/**
* 所属部门
*/
private String deptCode;
/**
* 审核人
*/
private String auditUser;
/**
* 审核时间
*/
private Date auditTime;
private String createUser;
/**
* 创建时间
*/
private Date createTime;
private String startDate;
private String endDate;
private Long applyId;
}