|
@@ -9,101 +9,101 @@ import com.fasterxml.jackson.annotation.JsonFormat.Shape;
|
|
|
import com.goafanti.common.constant.AFTConstants;
|
|
import com.goafanti.common.constant.AFTConstants;
|
|
|
|
|
|
|
|
public class TechProjectLog {
|
|
public class TechProjectLog {
|
|
|
- private String id;
|
|
|
|
|
-
|
|
|
|
|
- private String pid;
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 状态变更录入时间
|
|
|
|
|
- */
|
|
|
|
|
- private Date recordTime;
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 状态
|
|
|
|
|
- */
|
|
|
|
|
- private Integer state;
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 负责人
|
|
|
|
|
- */
|
|
|
|
|
- private String principal;
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 操作人
|
|
|
|
|
- */
|
|
|
|
|
- private String operator;
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
- * 备注
|
|
|
|
|
- */
|
|
|
|
|
- private String comment;
|
|
|
|
|
-
|
|
|
|
|
- public String getId() {
|
|
|
|
|
- return id;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public void setId(String id) {
|
|
|
|
|
- this.id = id;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public String getPid() {
|
|
|
|
|
- return pid;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public void setPid(String pid) {
|
|
|
|
|
- this.pid = pid;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public Date getRecordTime() {
|
|
|
|
|
- return recordTime;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public void setRecordTime(Date recordTime) {
|
|
|
|
|
- this.recordTime = recordTime;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- @JsonFormat(shape = Shape.STRING)
|
|
|
|
|
- public Integer getState() {
|
|
|
|
|
- return state;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public void setState(Integer state) {
|
|
|
|
|
- this.state = state;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public String getPrincipal() {
|
|
|
|
|
- return principal;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public void setPrincipal(String principal) {
|
|
|
|
|
- this.principal = principal;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public String getOperator() {
|
|
|
|
|
- return operator;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public void setOperator(String operator) {
|
|
|
|
|
- this.operator = operator;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public String getComment() {
|
|
|
|
|
- return comment;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public void setComment(String comment) {
|
|
|
|
|
- this.comment = comment;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public String getRecordTimeFormattedDate(){
|
|
|
|
|
|
|
+ private String id;
|
|
|
|
|
+
|
|
|
|
|
+ private String pid;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 状态变更录入时间
|
|
|
|
|
+ */
|
|
|
|
|
+ private Date recordTime;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 状态
|
|
|
|
|
+ */
|
|
|
|
|
+ private Integer state;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 负责人
|
|
|
|
|
+ */
|
|
|
|
|
+ private String principal;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 操作人
|
|
|
|
|
+ */
|
|
|
|
|
+ private String operator;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 备注
|
|
|
|
|
+ */
|
|
|
|
|
+ private String comment;
|
|
|
|
|
+
|
|
|
|
|
+ public String getId() {
|
|
|
|
|
+ return id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setId(String id) {
|
|
|
|
|
+ this.id = id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getPid() {
|
|
|
|
|
+ return pid;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setPid(String pid) {
|
|
|
|
|
+ this.pid = pid;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Date getRecordTime() {
|
|
|
|
|
+ return recordTime;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setRecordTime(Date recordTime) {
|
|
|
|
|
+ this.recordTime = recordTime;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @JsonFormat(shape = Shape.STRING)
|
|
|
|
|
+ public Integer getState() {
|
|
|
|
|
+ return state;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setState(Integer state) {
|
|
|
|
|
+ this.state = state;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getPrincipal() {
|
|
|
|
|
+ return principal;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setPrincipal(String principal) {
|
|
|
|
|
+ this.principal = principal;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getOperator() {
|
|
|
|
|
+ return operator;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setOperator(String operator) {
|
|
|
|
|
+ this.operator = operator;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getComment() {
|
|
|
|
|
+ return comment;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setComment(String comment) {
|
|
|
|
|
+ this.comment = comment;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getRecordTimeFormattedDate() {
|
|
|
if (this.recordTime == null) {
|
|
if (this.recordTime == null) {
|
|
|
return null;
|
|
return null;
|
|
|
} else {
|
|
} else {
|
|
|
return DateFormatUtils.format(this.getRecordTime(), AFTConstants.YYYYMMDDHHMMSS);
|
|
return DateFormatUtils.format(this.getRecordTime(), AFTConstants.YYYYMMDDHHMMSS);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
- public void setRecordTimeFormattedDate(String createTimeFormattedDate){
|
|
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public void setRecordTimeFormattedDate(String createTimeFormattedDate) {
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|