peng
5 天以前 095c52c6ec7882ce11177178b49d33e6c886af61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cn.lili.modules.lmk.domain.query;
 
import cn.lili.base.AbsQuery;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * 查询
 *
 * @author zxl
 * @since 2025-05-14
 */
@Data
@ApiModel(value = "StoreTagQuery参数", description = "查询参数")
public class StoreTagQuery extends AbsQuery {
    private String tagName;
}