1
This commit is contained in:
@@ -67,6 +67,9 @@ public class BatchPublishItem extends BaseEntity
|
||||
@Excel(name = "失败原因")
|
||||
private String errorMessage;
|
||||
|
||||
/** 执行日志 */
|
||||
private String execLog;
|
||||
|
||||
/** 上架时间 */
|
||||
@Excel(name = "上架时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date publishTime;
|
||||
@@ -178,6 +181,14 @@ public class BatchPublishItem extends BaseEntity
|
||||
this.errorMessage = errorMessage;
|
||||
}
|
||||
|
||||
public String getExecLog() {
|
||||
return execLog;
|
||||
}
|
||||
|
||||
public void setExecLog(String execLog) {
|
||||
this.execLog = execLog;
|
||||
}
|
||||
|
||||
public Date getPublishTime() {
|
||||
return publishTime;
|
||||
}
|
||||
@@ -210,6 +221,7 @@ public class BatchPublishItem extends BaseEntity
|
||||
.append("outerId", getOuterId())
|
||||
.append("publishPrice", getPublishPrice())
|
||||
.append("errorMessage", getErrorMessage())
|
||||
.append("execLog", getExecLog())
|
||||
.append("publishTime", getPublishTime())
|
||||
.append("delaySeconds", getDelaySeconds())
|
||||
.append("createTime", getCreateTime())
|
||||
|
||||
Reference in New Issue
Block a user