xiangpei
4 小时以前 4f89ece90fca89b667a244376605f9190a234b80
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cn.lili.modules.lmk.domain.query;
 
import cn.lili.base.AbsQuery;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * 新闻查询参数
 *
 * @author zxl
 * @since 2025-06-20
 */
@Data
@ApiModel(value = "新闻查询参数", description = "新闻查询参数")
public class NewsQuery extends AbsQuery {
 
    /**
     * 标题
     */
    private String title;
 
    private String publish;
}