|
@@ -1,5 +1,6 @@
|
|
|
package com.fs.store.domain;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.fs.common.annotation.Excel;
|
|
|
import com.fs.common.core.domain.BaseEntity;
|
|
@@ -151,6 +152,17 @@ public class FsUser extends BaseEntity
|
|
|
// 是否已购0 否 1程序内下单 2程序外下单
|
|
|
private Integer payOrder;
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Date startCreateTime;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date endCreateTime;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String companyUserNickName;
|
|
|
+
|
|
|
public Integer getQwRepeat() {
|
|
|
return qwRepeat;
|
|
|
}
|
|
@@ -606,5 +618,27 @@ public class FsUser extends BaseEntity
|
|
|
return isDel;
|
|
|
}
|
|
|
|
|
|
+ public Date getStartCreateTime() {
|
|
|
+ return startCreateTime;
|
|
|
+ }
|
|
|
|
|
|
+ public Date getEndCreateTime() {
|
|
|
+ return endCreateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartCreateTime(Date startCreateTime) {
|
|
|
+ this.startCreateTime = startCreateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndCreateTime(Date endCreateTime) {
|
|
|
+ this.endCreateTime = endCreateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCompanyUserNickName() {
|
|
|
+ return companyUserNickName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCompanyUserNickName(String companyUserNickName) {
|
|
|
+ this.companyUserNickName = companyUserNickName;
|
|
|
+ }
|
|
|
}
|