1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cn.lili.modules.lmk.domain.query;
|
| import cn.lili.base.AbsQuery;
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| /**
| * 价格变动表查询
| *
| * @author peng
| * @since 2025-07-03
| */
| @Data
| @ApiModel(value = "PriceChange查询参数", description = "价格变动表查询参数")
| public class PriceChangeQuery extends AbsQuery {
| }
|
|