|
@@ -35,21 +35,21 @@ public class CrowdTestProjectPO implements Serializable {
|
|
|
@Column(name = "CTP_PDT_ID")
|
|
|
private Long projectDistributionTypeId;
|
|
|
|
|
|
+ @Column(name = "CTP_FIELD_TYPE")
|
|
|
+ private String fieldType;
|
|
|
+
|
|
|
@Column(name = "CTP_PLATFORM")
|
|
|
private String platform;
|
|
|
|
|
|
+ @Column(name = "CTP_TYPE")
|
|
|
+ private String type;
|
|
|
+
|
|
|
@Column(name = "CTP_LINK_MAN")
|
|
|
private String linkMan;
|
|
|
|
|
|
@Column(name = "CTP_Link_MAN_MOBILE")
|
|
|
private String linkManMobile;
|
|
|
|
|
|
- @Column(name = "CTP_TYPE")
|
|
|
- private String type;
|
|
|
-
|
|
|
- @Column(name = "CTP_FIELD_TYPE")
|
|
|
- private String fieldType;
|
|
|
-
|
|
|
@Column(name = "CTP_DESCRIPTION")
|
|
|
private String description;
|
|
|
|
|
@@ -92,32 +92,4 @@ public class CrowdTestProjectPO implements Serializable {
|
|
|
|
|
|
@Column(name = "CTP_CREATE_TIME")
|
|
|
private Timestamp createTime;
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "CrowdTestProjectPO{" +
|
|
|
- "id=" + id +
|
|
|
- ", code='" + code + '\'' +
|
|
|
- ", name='" + name + '\'' +
|
|
|
- ", userId=" + userId +
|
|
|
- ", regionalManagerId=" + regionalManagerId +
|
|
|
- ", projectDistributionTypeId=" + projectDistributionTypeId +
|
|
|
- ", description='" + description + '\'' +
|
|
|
- ", platform=" + platform +
|
|
|
- ", linkMan='" + linkMan + '\'' +
|
|
|
- ", linkManMobile='" + linkManMobile + '\'' +
|
|
|
- ", type=" + type +
|
|
|
- ", distributionProvince='" + distributionProvince + '\'' +
|
|
|
- ", distributionCity='" + distributionCity + '\'' +
|
|
|
- ", projectFile='" + projectFile + '\'' +
|
|
|
- ", requirementFile='" + requirementFile + '\'' +
|
|
|
- ", quotedPrice=" + quotedPrice +
|
|
|
- ", fixedPrice=" + fixedPrice +
|
|
|
- ", status=" + status +
|
|
|
- ", deadTime=" + deadTime +
|
|
|
- ", endTime=" + endTime +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", createTime=" + createTime +
|
|
|
- '}';
|
|
|
- }
|
|
|
}
|