|
|
@@ -1,5 +1,116 @@
|
|
|
package com.goafanti.demand.bo;
|
|
|
|
|
|
+import javax.validation.constraints.Max;
|
|
|
+import javax.validation.constraints.Min;
|
|
|
+import javax.validation.constraints.Size;
|
|
|
+
|
|
|
+import com.goafanti.common.constant.ErrorConstants;
|
|
|
+
|
|
|
public class InputDemandOrder {
|
|
|
- private String demandId;
|
|
|
+ @Size(min = 0, max = 36, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String demandId;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String enclosureUrl;
|
|
|
+
|
|
|
+ @Max(value = 6, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ @Max(value = 99999999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer intentionMoney;
|
|
|
+
|
|
|
+ @Max(value = 99999999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer contractMoney;
|
|
|
+
|
|
|
+ @Max(value = 99999999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer commission;
|
|
|
+
|
|
|
+ @Max(value = 99999999, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer serviceMoney;
|
|
|
+
|
|
|
+ @Max(value = 1, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer refund;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 128, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String comment;
|
|
|
+
|
|
|
+ public String getDemandId() {
|
|
|
+ return demandId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDemandId(String demandId) {
|
|
|
+ this.demandId = demandId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEnclosureUrl() {
|
|
|
+ return enclosureUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEnclosureUrl(String enclosureUrl) {
|
|
|
+ this.enclosureUrl = enclosureUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(Integer status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getIntentionMoney() {
|
|
|
+ return intentionMoney;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIntentionMoney(Integer intentionMoney) {
|
|
|
+ this.intentionMoney = intentionMoney;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getContractMoney() {
|
|
|
+ return contractMoney;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContractMoney(Integer contractMoney) {
|
|
|
+ this.contractMoney = contractMoney;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCommission() {
|
|
|
+ return commission;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCommission(Integer commission) {
|
|
|
+ this.commission = commission;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getServiceMoney() {
|
|
|
+ return serviceMoney;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setServiceMoney(Integer serviceMoney) {
|
|
|
+ this.serviceMoney = serviceMoney;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getRefund() {
|
|
|
+ return refund;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRefund(Integer refund) {
|
|
|
+ this.refund = refund;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getComment() {
|
|
|
+ return comment;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setComment(String comment) {
|
|
|
+ this.comment = comment;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|