| | |
| | | |
| | | 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; |
| | |
| | | @Data |
| | | @ApiModel(value = "StoreCoupon查询参数", description = "店铺优惠卷对应关系查询参数") |
| | | public class StoreCouponQuery extends AbsQuery { |
| | | /** 店铺id */ |
| | | private Long storeId; |
| | | /** 店铺优惠卷状态 |
| | | * @see StoreCouponStausEnum |
| | | * */ |
| | | private String status; |
| | | /** 生成优惠卷状态 |
| | | * @see GenerateCouponStausEnum |
| | | * */ |
| | | private String generateStatus; |
| | | |
| | | } |
| | | |