cy
2023-12-01 01107e8aadfaf1e84a971d8eeb9ab37e1c5569f3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.consum.base.pojo.query;
 
import com.walker.web.param.ParamRequest;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClassName LWhProcureModelQry
 * @Author cy
 * @Date 2023/11/30
 * @Description
 * @Version 1.0
 **/
@Data
@ApiModel(value = "参数")
public class LWhProcureModelQry extends ParamRequest {
 
    @ApiModelProperty("物品名称")
    private String goodsTemplateName;
    private Long baseGoodsTemplateId;
 
    @ApiModelProperty("部门ID")
    private Long departmentId;
 
    @ApiModelProperty("分发单ID")
    private Long transBusinessId;
}