|
|
@@ -5,6 +5,7 @@ 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 io.swagger.models.auth.In;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.time.LocalDateTime;
|
|
|
@@ -146,6 +147,21 @@ public class FosterwxCashScheduleTaskList extends Model<FosterwxCashScheduleTask
|
|
|
@TableField(exist = false)
|
|
|
private Object boxInfo;
|
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String templateName;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String groupName;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String catalogName;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Integer totalCount;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Integer createdCount;
|
|
|
+
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -347,6 +363,46 @@ public class FosterwxCashScheduleTaskList extends Model<FosterwxCashScheduleTask
|
|
|
this.boxUrl = boxUrl;
|
|
|
}
|
|
|
|
|
|
+ public String getTemplateName() {
|
|
|
+ return templateName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTemplateName(String templateName) {
|
|
|
+ this.templateName = templateName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGroupName() {
|
|
|
+ return groupName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGroupName(String groupName) {
|
|
|
+ this.groupName = groupName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCatalogName() {
|
|
|
+ return catalogName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCatalogName(String catalogName) {
|
|
|
+ this.catalogName = catalogName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTotalCount() {
|
|
|
+ return totalCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalCount(Integer totalCount) {
|
|
|
+ this.totalCount = totalCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCreatedCount() {
|
|
|
+ return createdCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedCount(Integer createdCount) {
|
|
|
+ this.createdCount = createdCount;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
protected Serializable pkVal() {
|
|
|
return this.id;
|