无关风月
2024-07-30 95727f675f239e0b6e34c32d6ee773b66c9e3689
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.management.domain.dto;
 
import com.ruoyi.common.core.web.page.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("物资数据取对象")
public class StoreManagementGoodSmaterialsQuery extends BasePage {
    @ApiModelProperty("物资名称")
    private String goodsMaterialsName;
 
    @ApiModelProperty("1 是非消耗,2是消耗 ")
    private Integer isConsume;
 
    @ApiModelProperty("物资id")
    private Long goodsMaterialsId;
 
 
    @ApiModelProperty("仓库id")
    private Long storeManagementId;
}