|
|
@@ -1,5 +1,147 @@
|
|
|
package com.goafanti.activity.bo;
|
|
|
|
|
|
+import javax.validation.constraints.Max;
|
|
|
+import javax.validation.constraints.Min;
|
|
|
+import javax.validation.constraints.Size;
|
|
|
+
|
|
|
+import com.goafanti.common.constant.ErrorConstants;
|
|
|
+
|
|
|
public class InputActivity {
|
|
|
+ @Max(value = 999999999999999999L, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 45, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 128, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String address;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 45, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String host;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 45, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String undertake;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String asist;
|
|
|
+
|
|
|
+ @Max(value = 9, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer type;
|
|
|
+
|
|
|
+ @Max(value = 9, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ @Min(value = 0, message = "{" + ErrorConstants.PARAM_ERROR + "}")
|
|
|
+ private Integer form;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 1000, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String imgUrls;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String result;
|
|
|
+
|
|
|
+ @Size(min = 0, max = 255, message = "{" + ErrorConstants.PARAM_SIZE_ERROR + "}")
|
|
|
+ private String titleUrl;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 描述
|
|
|
+ */
|
|
|
+ private String desc;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAddress() {
|
|
|
+ return address;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAddress(String address) {
|
|
|
+ this.address = address;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getHost() {
|
|
|
+ return host;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHost(String host) {
|
|
|
+ this.host = host;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUndertake() {
|
|
|
+ return undertake;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUndertake(String undertake) {
|
|
|
+ this.undertake = undertake;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAsist() {
|
|
|
+ return asist;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAsist(String asist) {
|
|
|
+ this.asist = asist;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(Integer type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getForm() {
|
|
|
+ return form;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setForm(Integer form) {
|
|
|
+ this.form = form;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getImgUrls() {
|
|
|
+ return imgUrls;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setImgUrls(String imgUrls) {
|
|
|
+ this.imgUrls = imgUrls;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getResult() {
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setResult(String result) {
|
|
|
+ this.result = result;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTitleUrl() {
|
|
|
+ return titleUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTitleUrl(String titleUrl) {
|
|
|
+ this.titleUrl = titleUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDesc() {
|
|
|
+ return desc;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDesc(String desc) {
|
|
|
+ this.desc = desc;
|
|
|
+ }
|
|
|
|
|
|
}
|