Helius
2022-05-24 560228ac3c15cccce0b2a5994d44e4e81b5b3b73
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.matrix.system.padApi.dto;
 
import com.matrix.system.app.dto.BasePageDto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@ApiModel(value = "PadKucunListDto", description = "库存列表接收参数类")
@Data
public class PadKucunListDto extends BasePageDto {
    @ApiModelProperty(value = "库存分类ID", example = "")
    private Long goodsSortId;
 
    @ApiModelProperty(value = "查询字段")
    private String queryKey;
 
    @ApiModelProperty(hidden = true)
    private Long shopId;
 
    @ApiModelProperty(hidden = true)
    private Long companyId;
}