|
@@ -5,11 +5,6 @@ import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import lombok.ToString;
|
|
|
-import org.springframework.format.annotation.DateTimeFormat;
|
|
|
-
|
|
|
-import java.time.LocalDateTime;
|
|
|
-
|
|
|
-import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
|
|
|
|
@Schema(description = "管理后台 - 积分商城活动分页 Request VO")
|
|
|
@Data
|
|
@@ -17,20 +12,7 @@ import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_
|
|
|
@ToString(callSuper = true)
|
|
|
public class PointActivityPageReqVO extends PageParam {
|
|
|
|
|
|
- @Schema(description = "积分商城活动商品", example = "19509")
|
|
|
- private Long spuId;
|
|
|
-
|
|
|
@Schema(description = "活动状态", example = "2")
|
|
|
private Integer status;
|
|
|
|
|
|
- @Schema(description = "备注", example = "你说的对")
|
|
|
- private String remark;
|
|
|
-
|
|
|
- @Schema(description = "排序")
|
|
|
- private Integer sort;
|
|
|
-
|
|
|
- @Schema(description = "创建时间")
|
|
|
- @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
|
- private LocalDateTime[] createTime;
|
|
|
-
|
|
|
}
|