package cn.lili.modules.lmk.domain.query;
|
|
import cn.lili.base.AbsQuery;
|
import java.util.List;
|
|
import cn.lili.modules.lmk.enums.general.GenerateCouponStausEnum;
|
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-09-25
|
*/
|
@Data
|
@ApiModel(value = "StoreCoupon查询参数", description = "店铺优惠卷对应关系查询参数")
|
public class StoreCouponQuery extends AbsQuery {
|
/** 店铺id */
|
private Long storeId;
|
/** 店铺优惠卷状态
|
* @see StoreCouponStausEnum
|
* */
|
private String status;
|
/** 生成优惠卷状态
|
* @see GenerateCouponStausEnum
|
* */
|
private String generateStatus;
|
|
}
|