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.
43 lines
758 B
Java
43 lines
758 B
Java
1 year ago
|
package com.glxp.api.req.purchase;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||
|
import com.glxp.api.entity.purchase.PurApplyArgument;
|
||
|
import com.glxp.api.util.page.ListPageRequest;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Data
|
||
|
public class PurApplyArgumentRequest extends ListPageRequest {
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 询价单据号
|
||
|
*/
|
||
|
private String applyBillNo;
|
||
|
|
||
|
/**
|
||
|
* 论证状态
|
||
|
*/
|
||
|
private Integer argStatus;
|
||
|
|
||
|
/**
|
||
|
* 申购负责人
|
||
|
*/
|
||
|
private String createName;
|
||
|
|
||
|
/**
|
||
|
* 产品名字
|
||
|
*/
|
||
|
private String productName;
|
||
|
|
||
|
private Long deptCode;
|
||
|
|
||
|
@TableField(value = "pageType")
|
||
|
private Integer pageType;
|
||
|
|
||
|
private String templateId;
|
||
|
|
||
|
private List<PurApplyArgument> list;
|
||
|
}
|