xiaoyong931011
2021-04-08 d6e902a48df4264d6dbf6ff0c9799c3c30c9d9ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.matrix.system.activity.dto;
 
import com.matrix.core.pojo.BasePageQueryDto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "GoodsDto", description = "查询参数")
public class GoodsDto extends BasePageQueryDto {
 
    @ApiModelProperty(value ="商品名称")
    private String cpmc;
 
    @ApiModelProperty(hidden = true)
    private Long companyId;
 
}