rentaiming
2024-05-27 43c263df4d8ce0cc830f287780c29db8a2b47f0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.goods.controller.management.dto;
 
import com.ruoyi.common.core.web.page.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * @author mitao
 * @date 2024/5/21
 */
@Data
@EqualsAndHashCode(callSuper = true)
@ApiModel(value = "商品系列查询对象", description = "商品系列查询对象")
public class GoodsSeriesQuery extends BasePage {
 
    private static final long serialVersionUID = 2265520959737199709L;
 
    @ApiModelProperty(value = "系列名称")
    private String seriesName;
}