|
@@ -1,9 +1,6 @@
|
|
|
package com.yonge.cooleshow.admin.io.request.coupon;
|
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.yonge.toolset.base.page.QueryInfo;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@@ -12,7 +9,6 @@ import lombok.Data;
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
-import java.math.BigDecimal;
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
/**
|
|
@@ -28,7 +24,7 @@ public class CouponInfoVO {
|
|
|
@NoArgsConstructor
|
|
|
@AllArgsConstructor
|
|
|
@ApiModel(value = "优惠券信息分页请求", description = "优惠券信息分页")
|
|
|
- public static class RequestInfo extends QueryInfo {
|
|
|
+ public static class PageRequest extends QueryInfo {
|
|
|
|
|
|
@ApiModelProperty("优惠券名称")
|
|
|
private String name;
|
|
@@ -48,7 +44,7 @@ public class CouponInfoVO {
|
|
|
@NoArgsConstructor
|
|
|
@AllArgsConstructor
|
|
|
@ApiModel(value = "优惠券信息分页信息", description = "优惠券信息分页信息")
|
|
|
- public static class ResponseInfo implements Serializable {
|
|
|
+ public static class CouponPageInfo implements Serializable {
|
|
|
|
|
|
@ApiModelProperty("优惠券ID")
|
|
|
private Long id;
|