|
@@ -52,9 +52,9 @@ public class PushSet implements Serializable {
|
|
|
private String modifier;
|
|
|
|
|
|
/**
|
|
|
- * 推理聚焦位置
|
|
|
+ * 推理模式
|
|
|
*/
|
|
|
- private Integer focus;
|
|
|
+ private Integer mode;
|
|
|
|
|
|
/**
|
|
|
* 配置名称
|
|
@@ -80,6 +80,7 @@ public class PushSet implements Serializable {
|
|
|
public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
+
|
|
|
public String getIsDeleted() {
|
|
|
return isDeleted;
|
|
|
}
|
|
@@ -87,6 +88,7 @@ public class PushSet implements Serializable {
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
+
|
|
|
public LocalDateTime getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
@@ -94,6 +96,7 @@ public class PushSet implements Serializable {
|
|
|
public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
this.gmtCreate = gmtCreate;
|
|
|
}
|
|
|
+
|
|
|
public LocalDateTime getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
@@ -101,6 +104,7 @@ public class PushSet implements Serializable {
|
|
|
public void setGmtModified(LocalDateTime gmtModified) {
|
|
|
this.gmtModified = gmtModified;
|
|
|
}
|
|
|
+
|
|
|
public String getCreator() {
|
|
|
return creator;
|
|
|
}
|
|
@@ -108,6 +112,7 @@ public class PushSet implements Serializable {
|
|
|
public void setCreator(String creator) {
|
|
|
this.creator = creator;
|
|
|
}
|
|
|
+
|
|
|
public String getModifier() {
|
|
|
return modifier;
|
|
|
}
|
|
@@ -115,13 +120,15 @@ public class PushSet implements Serializable {
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
- public Integer getFocus() {
|
|
|
- return focus;
|
|
|
+
|
|
|
+ public Integer getMode() {
|
|
|
+ return mode;
|
|
|
}
|
|
|
|
|
|
- public void setFocus(Integer focus) {
|
|
|
- this.focus = focus;
|
|
|
+ public void setMode(Integer mode) {
|
|
|
+ this.mode = mode;
|
|
|
}
|
|
|
+
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
@@ -129,6 +136,7 @@ public class PushSet implements Serializable {
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
+
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
@@ -136,6 +144,7 @@ public class PushSet implements Serializable {
|
|
|
public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
+
|
|
|
public String getValue() {
|
|
|
return value;
|
|
|
}
|
|
@@ -143,6 +152,7 @@ public class PushSet implements Serializable {
|
|
|
public void setValue(String value) {
|
|
|
this.value = value;
|
|
|
}
|
|
|
+
|
|
|
public String getRemark() {
|
|
|
return remark;
|
|
|
}
|
|
@@ -154,17 +164,17 @@ public class PushSet implements Serializable {
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "PushSet{" +
|
|
|
- "id=" + id +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- ", focus=" + focus +
|
|
|
- ", name=" + name +
|
|
|
- ", code=" + code +
|
|
|
- ", value=" + value +
|
|
|
- ", remark=" + remark +
|
|
|
- "}";
|
|
|
- }
|
|
|
-}
|
|
|
+ "id=" + id +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ ", mode=" + mode +
|
|
|
+ ", name=" + name +
|
|
|
+ ", code=" + code +
|
|
|
+ ", value=" + value +
|
|
|
+ ", remark=" + remark +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|