|
|
@@ -12,8 +12,6 @@ public class InputAchievement {
|
|
|
@Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
private String id;
|
|
|
|
|
|
-
|
|
|
-
|
|
|
@Max(value = 2, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
@Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
private Integer dataCategory;
|
|
|
@@ -74,6 +72,9 @@ public class InputAchievement {
|
|
|
private Integer ownerType;
|
|
|
|
|
|
@Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String ownerId;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
private String ownerIdNumber;
|
|
|
|
|
|
@Size(min = 0, max = 12, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
@@ -97,7 +98,7 @@ public class InputAchievement {
|
|
|
@Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
private Integer bargainingMode;
|
|
|
|
|
|
- @Max(value = (long)999999.99, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Max(value = (long) 999999.99, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
@Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
private BigDecimal transferPrice;
|
|
|
|
|
|
@@ -146,17 +147,21 @@ public class InputAchievement {
|
|
|
@Max(value = 9, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
@Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
private Integer status;
|
|
|
-
|
|
|
+
|
|
|
@Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
@Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
private Integer releaseStatus;
|
|
|
-
|
|
|
+
|
|
|
@Max(value = 4, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
@Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
- private Integer auditStatus;
|
|
|
-
|
|
|
+ private Integer auditStatus;
|
|
|
+
|
|
|
@Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
- private String techBrokerId;
|
|
|
+ private String techBrokerId;
|
|
|
+
|
|
|
+ @Max(value = 3, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer contacts;
|
|
|
|
|
|
public String getId() {
|
|
|
return id;
|
|
|
@@ -509,6 +514,22 @@ public class InputAchievement {
|
|
|
public void setTechBrokerId(String techBrokerId) {
|
|
|
this.techBrokerId = techBrokerId;
|
|
|
}
|
|
|
+
|
|
|
+ public String getOwnerId() {
|
|
|
+ return ownerId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOwnerId(String ownerId) {
|
|
|
+ this.ownerId = ownerId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getContacts() {
|
|
|
+ return contacts;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContacts(Integer contacts) {
|
|
|
+ this.contacts = contacts;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|