|
@@ -23,6 +23,11 @@ public class BuildLog implements Serializable {
|
|
|
private String queueName;
|
|
|
|
|
|
/**
|
|
|
+ * 消息队列名称
|
|
|
+ */
|
|
|
+ private String queueMsg;
|
|
|
+
|
|
|
+ /**
|
|
|
* CalculateStatusEnum
|
|
|
*/
|
|
|
private int status;
|
|
@@ -65,9 +70,10 @@ public class BuildLog implements Serializable {
|
|
|
*/
|
|
|
private Date updateTime;
|
|
|
|
|
|
- public BuildLog(String hostName,String queueName) {
|
|
|
+ public BuildLog(String hostName,String queueName,String queueMsg) {
|
|
|
this.hostName = hostName;
|
|
|
this.queueName = queueName;
|
|
|
+ this.queueMsg = queueMsg;
|
|
|
this.createTime = new Date();
|
|
|
}
|
|
|
}
|