peng
7 天以前 28e85b011d662ef7b42216993f1f91d79b4d93c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package cn.lili.modules.lmk.domain.query;
 
import cn.lili.base.AbsQuery;
import java.util.List;
 
import cn.lili.modules.lmk.enums.general.StoreCouponStausEnum;
import org.springframework.lang.NonNull;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 私厨定制标签查询
 *
 * @author peng
 * @since 2025-12-24
 */
@Data
@ApiModel(value = "KitchenTag查询参数", description = "私厨定制标签查询参数")
public class KitchenTagQuery extends AbsQuery {
    /**
     * @see StoreCouponStausEnum
     * 启用状态
     */
    private String enable;
    /**
     * 分类名称
     */
    private String tagName;
}