|
@@ -1,7 +1,15 @@
|
|
|
package com.yonge.cooleshow.biz.dal.dto.search;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.yonge.cooleshow.biz.dal.enums.InOrOutEnum;
|
|
|
import com.yonge.toolset.base.page.QueryInfo;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* @Author: liweifan
|
|
@@ -11,4 +19,63 @@ import io.swagger.annotations.ApiModel;
|
|
|
public class ActivityRewardChangeStockSearch extends QueryInfo{
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
+ @ApiModelProperty(value = "变更来源:ADMIN 后台调整 ACTIVITY 活动分配 ",hidden = true)
|
|
|
+ private String source;
|
|
|
+
|
|
|
+ @ApiModelProperty("调整类型: IN 增加 OUT 减少 ")
|
|
|
+ private InOrOutEnum changeType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "操作人")
|
|
|
+ private String updateByName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动开始时间")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date startTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "活动结束时间")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date endTime;
|
|
|
+
|
|
|
+
|
|
|
+ public InOrOutEnum getChangeType() {
|
|
|
+ return changeType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setChangeType(InOrOutEnum changeType) {
|
|
|
+ this.changeType = changeType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSource() {
|
|
|
+ return source;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSource(String source) {
|
|
|
+ this.source = source;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUpdateByName() {
|
|
|
+ return updateByName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateByName(String updateByName) {
|
|
|
+ this.updateByName = updateByName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getStartTime() {
|
|
|
+ return startTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartTime(Date startTime) {
|
|
|
+ this.startTime = startTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getEndTime() {
|
|
|
+ return endTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndTime(Date endTime) {
|
|
|
+ this.endTime = endTime;
|
|
|
+ }
|
|
|
}
|