|
@@ -4,6 +4,7 @@ import com.ruoyi.common.core.annotation.Excel;
|
|
|
import com.sooka.sponest.data.base.domain.BaseBusinessEntity;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
@@ -17,6 +18,7 @@ import java.util.List;
|
|
|
* @date 2023-02-21
|
|
|
*/
|
|
|
@ApiModel(description = "违建信息对象")
|
|
|
+@Data
|
|
|
public class CenterdataTResourcesIllegalConstruction extends BaseBusinessEntity {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -148,239 +150,30 @@ public class CenterdataTResourcesIllegalConstruction extends BaseBusinessEntity
|
|
|
@NotBlank(message = "所属部门不能为空")
|
|
|
private String deptName;
|
|
|
|
|
|
- public String getAttachId() {
|
|
|
- return attachId;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 图片上传路径
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "图片上传路径", required = false)
|
|
|
+ private String attachPaths;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 图片来源
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "图片来源", required = false)
|
|
|
+ private String busSource;
|
|
|
|
|
|
- public void setAttachId(String attachId) {
|
|
|
- this.attachId = attachId;
|
|
|
- }
|
|
|
|
|
|
private String attachId;
|
|
|
|
|
|
|
|
|
private List<String> deviceList;
|
|
|
|
|
|
- public List<String> getDeviceList() {
|
|
|
- return deviceList;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDeviceList(List<String> deviceList) {
|
|
|
- this.deviceList = deviceList;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDialogImageUrl() {
|
|
|
- return dialogImageUrl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDialogImageUrl(String dialogImageUrl) {
|
|
|
- this.dialogImageUrl = dialogImageUrl;
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* 数据状态
|
|
|
*/
|
|
|
private String dialogImageUrl;
|
|
|
private String dataStatus;
|
|
|
|
|
|
- public String getConstructionTypeLabel() {
|
|
|
- return constructionTypeLabel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setConstructionTypeLabel(String constructionTypeLabel) {
|
|
|
- this.constructionTypeLabel = constructionTypeLabel;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRemark() {
|
|
|
- return remark;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRemark(String remark) {
|
|
|
- this.remark = remark;
|
|
|
- }
|
|
|
-
|
|
|
private String remark;
|
|
|
|
|
|
- public void setId(String id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
-
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
-
|
|
|
- public void setConstructionType(String constructionType) {
|
|
|
- this.constructionType = constructionType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getConstructionType() {
|
|
|
- return constructionType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLongitude(String longitude) {
|
|
|
- this.longitude = longitude;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLongitude() {
|
|
|
- return longitude;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLatitude(String latitude) {
|
|
|
- this.latitude = latitude;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLatitude() {
|
|
|
- return latitude;
|
|
|
- }
|
|
|
-
|
|
|
- public void setArea(String area) {
|
|
|
- this.area = area;
|
|
|
- }
|
|
|
-
|
|
|
- public String getArea() {
|
|
|
- return area;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPhone(String phone) {
|
|
|
- this.phone = phone;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPhone() {
|
|
|
- return phone;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPerson(String person) {
|
|
|
- this.person = person;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPerson() {
|
|
|
- return person;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDeptId(Long deptId) {
|
|
|
- this.deptId = deptId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getDeptId() {
|
|
|
- return deptId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDeptName(String deptName) {
|
|
|
- this.deptName = deptName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDeptName() {
|
|
|
- return deptName;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public void setDataStatus(String dataStatus) {
|
|
|
- this.dataStatus = dataStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDataStatus() {
|
|
|
- return dataStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPhone2() {
|
|
|
- return phone2;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPhone2(String phone2) {
|
|
|
- this.phone2 = phone2;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPhone3() {
|
|
|
- return phone3;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPhone3(String phone3) {
|
|
|
- this.phone3 = phone3;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPhone4() {
|
|
|
- return phone4;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPhone4(String phone4) {
|
|
|
- this.phone4 = phone4;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPhone5() {
|
|
|
- return phone5;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPhone5(String phone5) {
|
|
|
- this.phone5 = phone5;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPerson2() {
|
|
|
- return person2;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPerson2(String person2) {
|
|
|
- this.person2 = person2;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPerson3() {
|
|
|
- return person3;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPerson3(String person3) {
|
|
|
- this.person3 = person3;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPerson4() {
|
|
|
- return person4;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPerson4(String person4) {
|
|
|
- this.person4 = person4;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPerson5() {
|
|
|
- return person5;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPerson5(String person5) {
|
|
|
- this.person5 = person5;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this)
|
|
|
- .append("id", id)
|
|
|
- .append("name", name)
|
|
|
- .append("constructionType", constructionType)
|
|
|
- .append("constructionTypeLabel", constructionTypeLabel)
|
|
|
- .append("longitude", longitude)
|
|
|
- .append("latitude", latitude)
|
|
|
- .append("area", area)
|
|
|
- .append("phone", phone)
|
|
|
- .append("phone2", phone2)
|
|
|
- .append("phone3", phone3)
|
|
|
- .append("phone4", phone4)
|
|
|
- .append("phone5", phone5)
|
|
|
- .append("person", person)
|
|
|
- .append("person2", person2)
|
|
|
- .append("person3", person3)
|
|
|
- .append("person4", person4)
|
|
|
- .append("person5", person5)
|
|
|
- .append("deptId", deptId)
|
|
|
- .append("deptName", deptName)
|
|
|
- .append("attachId", attachId)
|
|
|
- .append("deviceList", deviceList)
|
|
|
- .append("dialogImageUrl", dialogImageUrl)
|
|
|
- .append("dataStatus", dataStatus)
|
|
|
- .append("remark", remark)
|
|
|
- .toString();
|
|
|
- }
|
|
|
}
|