|
|
@@ -1,12 +1,14 @@
|
|
|
package com.mokamrp.privates.mapper.pangu.pojo;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
import java.time.LocalDate;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import java.time.LocalDateTime;
|
|
|
-import java.io.Serializable;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
|
@@ -24,7 +26,7 @@ public class FosterwxCashAccountSchedule extends Model<FosterwxCashAccountSchedu
|
|
|
/**
|
|
|
* id
|
|
|
*/
|
|
|
- @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
private Integer id;
|
|
|
|
|
|
/**
|
|
|
@@ -72,6 +74,20 @@ public class FosterwxCashAccountSchedule extends Model<FosterwxCashAccountSchedu
|
|
|
*/
|
|
|
private LocalDateTime updateAt;
|
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String groupName;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String templateName;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Integer createdCount;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Integer sendedCount;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Integer totalCount;
|
|
|
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
@@ -158,19 +174,59 @@ public class FosterwxCashAccountSchedule extends Model<FosterwxCashAccountSchedu
|
|
|
return this.id;
|
|
|
}
|
|
|
|
|
|
+ public String getGroupName() {
|
|
|
+ return groupName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGroupName(String groupName) {
|
|
|
+ this.groupName = groupName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTemplateName() {
|
|
|
+ return templateName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTemplateName(String templateName) {
|
|
|
+ this.templateName = templateName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCreatedCount() {
|
|
|
+ return createdCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedCount(Integer createdCount) {
|
|
|
+ this.createdCount = createdCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSendedCount() {
|
|
|
+ return sendedCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSendedCount(Integer sendedCount) {
|
|
|
+ this.sendedCount = sendedCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTotalCount() {
|
|
|
+ return totalCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalCount(Integer totalCount) {
|
|
|
+ this.totalCount = totalCount;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "FosterwxCashAccountSchedule{" +
|
|
|
- "id=" + id +
|
|
|
- ", scheduleDate=" + scheduleDate +
|
|
|
- ", groupId=" + groupId +
|
|
|
- ", templateId=" + templateId +
|
|
|
- ", status=" + status +
|
|
|
- ", createUid=" + createUid +
|
|
|
- ", createUser=" + createUser +
|
|
|
- ", updateUid=" + updateUid +
|
|
|
- ", createAt=" + createAt +
|
|
|
- ", updateAt=" + updateAt +
|
|
|
- "}";
|
|
|
+ "id=" + id +
|
|
|
+ ", scheduleDate=" + scheduleDate +
|
|
|
+ ", groupId=" + groupId +
|
|
|
+ ", templateId=" + templateId +
|
|
|
+ ", status=" + status +
|
|
|
+ ", createUid=" + createUid +
|
|
|
+ ", createUser=" + createUser +
|
|
|
+ ", updateUid=" + updateUid +
|
|
|
+ ", createAt=" + createAt +
|
|
|
+ ", updateAt=" + updateAt +
|
|
|
+ "}";
|
|
|
}
|
|
|
}
|