New file |
| | |
| | | package cn.lili.modules.lmk.domain.query; |
| | | |
| | | import cn.lili.base.AbsQuery; |
| | | import java.util.List; |
| | | 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 = "StoreCouponClaimRecord查询参数", description = "店铺优惠卷领取记录查询参数") |
| | | public class StoreCouponClaimRecordQuery extends AbsQuery { |
| | | |
| | | private String sort; |
| | | |
| | | private String order; |
| | | |
| | | private String getType; |
| | | |
| | | private Long startTime; |
| | | |
| | | private Long endTime; |
| | | |
| | | private String memberCouponStatus; |
| | | |
| | | private String memberName; |
| | | |
| | | private String couponName; |
| | | } |
| | | |