|
@@ -11,7 +11,7 @@ import com.slibra.common.core.domain.BaseEntity;
|
|
* @author slibra
|
|
* @author slibra
|
|
* @date 2025-04-22
|
|
* @date 2025-04-22
|
|
*/
|
|
*/
|
|
-public class AutoFeedback extends BaseEntity
|
|
|
|
|
|
+public class AutoFeedback
|
|
{
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
@@ -54,6 +54,10 @@ public class AutoFeedback extends BaseEntity
|
|
@Excel(name = "记录变化过程信息")
|
|
@Excel(name = "记录变化过程信息")
|
|
private String ext;
|
|
private String ext;
|
|
|
|
|
|
|
|
+ /** 当前请求时间 */
|
|
|
|
+ @Excel(name = "当前请求时间")
|
|
|
|
+ private String updateTime;
|
|
|
|
+
|
|
public void setId(Long id)
|
|
public void setId(Long id)
|
|
{
|
|
{
|
|
this.id = id;
|
|
this.id = id;
|
|
@@ -145,20 +149,11 @@ public class AutoFeedback extends BaseEntity
|
|
return ext;
|
|
return ext;
|
|
}
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
|
- public String toString() {
|
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
- .append("id", getId())
|
|
|
|
- .append("reqTime", getReqTime())
|
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
|
- .append("feedbackType", getFeedbackType())
|
|
|
|
- .append("basePara", getBasePara())
|
|
|
|
- .append("controlCoef", getControlCoef())
|
|
|
|
- .append("cate", getCate())
|
|
|
|
- .append("subcate", getSubcate())
|
|
|
|
- .append("coef", getCoef())
|
|
|
|
- .append("cf", getCf())
|
|
|
|
- .append("ext", getExt())
|
|
|
|
- .toString();
|
|
|
|
|
|
+ public String getUpdateTime() {
|
|
|
|
+ return updateTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setUpdateTime(String updateTime) {
|
|
|
|
+ this.updateTime = updateTime;
|
|
}
|
|
}
|
|
}
|
|
}
|