|
@@ -1,9 +1,9 @@
|
|
package com.sooka.sponest.data.housingconstruction.domain;
|
|
package com.sooka.sponest.data.housingconstruction.domain;
|
|
|
|
|
|
-import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
-import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
import com.ruoyi.common.core.annotation.Excel;
|
|
import com.ruoyi.common.core.annotation.Excel;
|
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
|
|
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
+import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 住建-附件对象 centerdata_t_housingconstruction_attach
|
|
* 住建-附件对象 centerdata_t_housingconstruction_attach
|
|
@@ -11,167 +11,176 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|
* @author lg
|
|
* @author lg
|
|
* @date 2024-07-29
|
|
* @date 2024-07-29
|
|
*/
|
|
*/
|
|
-public class CenterdataTHousingconstructionAttach extends BaseEntity
|
|
|
|
- {
|
|
|
|
-private static final long serialVersionUID = 1L;
|
|
|
|
|
|
+public class CenterdataTHousingconstructionAttach extends BaseEntity {
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /** 序号 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 序号
|
|
|
|
+ */
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
- /** 业务id */
|
|
|
|
- @Excel(name = "业务id")
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 业务id
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "业务id")
|
|
private String busId;
|
|
private String busId;
|
|
|
|
|
|
- /** 附件属性 */
|
|
|
|
- @Excel(name = "附件属性")
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 附件属性
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "附件属性")
|
|
private String dictType;
|
|
private String dictType;
|
|
|
|
|
|
- /** 附件属性明细 */
|
|
|
|
- @Excel(name = "附件属性明细")
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 附件属性明细
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "附件属性明细")
|
|
private String dictValue;
|
|
private String dictValue;
|
|
|
|
|
|
- /** 附件路径 */
|
|
|
|
- @Excel(name = "附件路径")
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 附件路径
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "附件路径")
|
|
private String attachPath;
|
|
private String attachPath;
|
|
|
|
|
|
- /** 附件名称 */
|
|
|
|
- @Excel(name = "附件名称")
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 附件名称
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "附件名称")
|
|
private String fileName;
|
|
private String fileName;
|
|
|
|
|
|
- /** 排序 */
|
|
|
|
- @Excel(name = "排序")
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 排序
|
|
|
|
+ */
|
|
|
|
+ @Excel(name = "排序")
|
|
private Long attachSorts;
|
|
private Long attachSorts;
|
|
|
|
|
|
- /** 创建人 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 创建人
|
|
|
|
+ */
|
|
private String createName;
|
|
private String createName;
|
|
|
|
|
|
- /** 更新人 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 更新人
|
|
|
|
+ */
|
|
private String updateName;
|
|
private String updateName;
|
|
|
|
|
|
- /** 部门id */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 部门id
|
|
|
|
+ */
|
|
private Long deptId;
|
|
private Long deptId;
|
|
|
|
|
|
- /** 部门名称 */
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 部门名称
|
|
|
|
+ */
|
|
private String deptName;
|
|
private String deptName;
|
|
|
|
|
|
- public void setId(Long id)
|
|
|
|
- {
|
|
|
|
- this.id = id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getId()
|
|
|
|
- {
|
|
|
|
- return id;
|
|
|
|
- }
|
|
|
|
- public void setBusId(String busId)
|
|
|
|
- {
|
|
|
|
- this.busId = busId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getBusId()
|
|
|
|
- {
|
|
|
|
- return busId;
|
|
|
|
- }
|
|
|
|
- public void setDictType(String dictType)
|
|
|
|
- {
|
|
|
|
- this.dictType = dictType;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getDictType()
|
|
|
|
- {
|
|
|
|
- return dictType;
|
|
|
|
- }
|
|
|
|
- public void setDictValue(String dictValue)
|
|
|
|
- {
|
|
|
|
- this.dictValue = dictValue;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getDictValue()
|
|
|
|
- {
|
|
|
|
- return dictValue;
|
|
|
|
- }
|
|
|
|
- public void setAttachPath(String attachPath)
|
|
|
|
- {
|
|
|
|
- this.attachPath = attachPath;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getAttachPath()
|
|
|
|
- {
|
|
|
|
- return attachPath;
|
|
|
|
- }
|
|
|
|
- public void setFileName(String fileName)
|
|
|
|
- {
|
|
|
|
- this.fileName = fileName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getFileName()
|
|
|
|
- {
|
|
|
|
- return fileName;
|
|
|
|
- }
|
|
|
|
- public void setAttachSorts(Long attachSorts)
|
|
|
|
- {
|
|
|
|
- this.attachSorts = attachSorts;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getAttachSorts()
|
|
|
|
- {
|
|
|
|
- return attachSorts;
|
|
|
|
- }
|
|
|
|
- public void setCreateName(String createName)
|
|
|
|
- {
|
|
|
|
- this.createName = createName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCreateName()
|
|
|
|
- {
|
|
|
|
- return createName;
|
|
|
|
- }
|
|
|
|
- public void setUpdateName(String updateName)
|
|
|
|
- {
|
|
|
|
- this.updateName = updateName;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getUpdateName()
|
|
|
|
- {
|
|
|
|
- return updateName;
|
|
|
|
- }
|
|
|
|
- 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;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
-@Override
|
|
|
|
-public String toString() {
|
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
- .append("id", getId())
|
|
|
|
- .append("busId", getBusId())
|
|
|
|
- .append("dictType", getDictType())
|
|
|
|
- .append("dictValue", getDictValue())
|
|
|
|
- .append("attachPath", getAttachPath())
|
|
|
|
- .append("fileName", getFileName())
|
|
|
|
- .append("attachSorts", getAttachSorts())
|
|
|
|
- .append("createTime", getCreateTime())
|
|
|
|
- .append("createBy", getCreateBy())
|
|
|
|
- .append("createName", getCreateName())
|
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
|
- .append("updateName", getUpdateName())
|
|
|
|
- .append("deptId", getDeptId())
|
|
|
|
- .append("deptName", getDeptName())
|
|
|
|
- .toString();
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ public Long getId() {
|
|
|
|
+ return id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setId(Long id) {
|
|
|
|
+ this.id = id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getBusId() {
|
|
|
|
+ return busId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBusId(String busId) {
|
|
|
|
+ this.busId = busId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getDictType() {
|
|
|
|
+ return dictType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setDictType(String dictType) {
|
|
|
|
+ this.dictType = dictType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getDictValue() {
|
|
|
|
+ return dictValue;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setDictValue(String dictValue) {
|
|
|
|
+ this.dictValue = dictValue;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getAttachPath() {
|
|
|
|
+ return attachPath;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAttachPath(String attachPath) {
|
|
|
|
+ this.attachPath = attachPath;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getFileName() {
|
|
|
|
+ return fileName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setFileName(String fileName) {
|
|
|
|
+ this.fileName = fileName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getAttachSorts() {
|
|
|
|
+ return attachSorts;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAttachSorts(Long attachSorts) {
|
|
|
|
+ this.attachSorts = attachSorts;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCreateName() {
|
|
|
|
+ return createName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCreateName(String createName) {
|
|
|
|
+ this.createName = createName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getUpdateName() {
|
|
|
|
+ return updateName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setUpdateName(String updateName) {
|
|
|
|
+ this.updateName = updateName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getDeptId() {
|
|
|
|
+ return deptId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setDeptId(Long deptId) {
|
|
|
|
+ this.deptId = deptId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getDeptName() {
|
|
|
|
+ return deptName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setDeptName(String deptName) {
|
|
|
|
+ this.deptName = deptName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public String toString() {
|
|
|
|
+ return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
+ .append("id", getId())
|
|
|
|
+ .append("busId", getBusId())
|
|
|
|
+ .append("dictType", getDictType())
|
|
|
|
+ .append("dictValue", getDictValue())
|
|
|
|
+ .append("attachPath", getAttachPath())
|
|
|
|
+ .append("fileName", getFileName())
|
|
|
|
+ .append("attachSorts", getAttachSorts())
|
|
|
|
+ .append("createTime", getCreateTime())
|
|
|
|
+ .append("createBy", getCreateBy())
|
|
|
|
+ .append("createName", getCreateName())
|
|
|
|
+ .append("updateTime", getUpdateTime())
|
|
|
|
+ .append("updateBy", getUpdateBy())
|
|
|
|
+ .append("updateName", getUpdateName())
|
|
|
|
+ .append("deptId", getDeptId())
|
|
|
|
+ .append("deptName", getDeptName())
|
|
|
|
+ .toString();
|
|
|
|
+ }
|
|
|
|
+}
|