Browse Source

修复缺陷

lyq 4 tháng trước cách đây
mục cha
commit
c25be53a5a

+ 0 - 78
src/main/java/com/sooka/sponest/data/other/enterprise/domain/vo/CenterdataTEmergencyEnterpriseMessageBody.java

@@ -1,78 +0,0 @@
-package com.sooka.sponest.data.other.enterprise.domain.vo;
-
-import com.sooka.sponest.data.base.domain.BaseBusinessEntity;
-import lombok.Data;
-import org.apache.ibatis.type.Alias;
-
-import java.util.Date;
-import java.util.List;
-
-@Data
-@Alias("EmergencyEnterpriseMessageBody")
-public class CenterdataTEmergencyEnterpriseMessageBody extends BaseBusinessEntity {
-
-    public String getId() {
-        return id;
-    }
-
-    public void setId(String id) {
-        this.id = id;
-    }
-
-    /**
-     * 主键ID
-     */
-    private String id;
-
-    /**
-     * 删除人
-     */
-    private String deleteBy;
-
-    /**
-     * 删除时间
-     */
-    private Date deleteTime;
-
-    /**
-     * 数据状态
-     */
-    private String dataStatus;
-
-    /**
-     * 企业名称
-     */
-    private String enterpriseName;
-
-    /**
-     * 生产经营单位经营地址
-     */
-    private String enterpriseAddress;
-
-    /**
-     * 生产经营单位办公地址
-     */
-    private String enterpriseWorkaddress;
-
-    /**
-     * 组织机构代码
-     */
-    private String organizationCode;
-
-    /**
-     * 所属部门id
-     */
-    private Long deptId;
-    /**
-     * 类别名称
-     */
-    private List inspectionName;
-    /**
-     * 类别子名单
-     */
-    private List inspectionChildName;
-    /**
-     * 详细类型名称
-     */
-    private List itemMessage;
-}