@ApiModelProperty
parent
a4b6f79f96
commit
b02598a581
|
|
@ -1,5 +1,6 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
|
@ -12,30 +13,30 @@ import java.time.LocalDateTime;
|
||||||
@Data
|
@Data
|
||||||
public class FileInfoCO {
|
public class FileInfoCO {
|
||||||
|
|
||||||
/** 文件ID */
|
@ApiModelProperty(value = "文件ID")
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/** OSS文件访问URL */
|
@ApiModelProperty(value = "OSS文件访问URL")
|
||||||
private String url;
|
private String url;
|
||||||
|
|
||||||
/** 文件签名URL(带过期时间的临时访问链接) */
|
@ApiModelProperty(value = "文件签名URL(带过期时间的临时访问链接)")
|
||||||
private String presignedUrl;
|
private String presignedUrl;
|
||||||
|
|
||||||
/** 文件大小(字节) */
|
@ApiModelProperty(value = "文件大小(字节)")
|
||||||
private Long size;
|
private Long size;
|
||||||
|
|
||||||
/** 文件原始名称 */
|
@ApiModelProperty(value = "文件原始名称")
|
||||||
private String originalFilename;
|
private String originalFilename;
|
||||||
|
|
||||||
/** 文件扩展名 */
|
@ApiModelProperty(value = "文件扩展名")
|
||||||
private String ext;
|
private String ext;
|
||||||
|
|
||||||
/** 文件MIME类型 */
|
@ApiModelProperty(value = "文件MIME类型")
|
||||||
private String contentType;
|
private String contentType;
|
||||||
|
|
||||||
/** 上传者姓名 */
|
@ApiModelProperty(value = "上传者姓名")
|
||||||
private String creatorName;
|
private String creatorName;
|
||||||
|
|
||||||
/** 上传时间 */
|
@ApiModelProperty(value = "上传时间")
|
||||||
private LocalDateTime createdTime;
|
private LocalDateTime createdTime;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -10,27 +11,27 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class OrgDepartmentCO {
|
public class OrgDepartmentCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** parentId */
|
@ApiModelProperty(value = "父部门ID")
|
||||||
private Long parentId;
|
private Long parentId;
|
||||||
|
|
||||||
/** deptName */
|
@ApiModelProperty(value = "部门名称")
|
||||||
private String deptName;
|
private String deptName;
|
||||||
|
|
||||||
/** managerName */
|
@ApiModelProperty(value = "负责人姓名")
|
||||||
private String managerName;
|
private String managerName;
|
||||||
|
|
||||||
/** managerAccount */
|
@ApiModelProperty(value = "负责人账号")
|
||||||
private String managerAccount;
|
private String managerAccount;
|
||||||
|
|
||||||
/** deptLevelCode */
|
@ApiModelProperty(value = "部门级别编码")
|
||||||
private String deptLevelCode;
|
private String deptLevelCode;
|
||||||
|
|
||||||
/** deptLevelName */
|
@ApiModelProperty(value = "部门级别名称")
|
||||||
private String deptLevelName;
|
private String deptLevelName;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
|
|
@ -11,57 +13,57 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class OrgEquipmentCO {
|
public class OrgEquipmentCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** deviceName */
|
@ApiModelProperty(value = "设备名称")
|
||||||
private String deviceName;
|
private String deviceName;
|
||||||
|
|
||||||
/** deviceModel */
|
@ApiModelProperty(value = "设备型号")
|
||||||
private String deviceModel;
|
private String deviceModel;
|
||||||
|
|
||||||
/** instrumentTypeCode */
|
@ApiModelProperty(value = "仪器类型编码")
|
||||||
private String instrumentTypeCode;
|
private String instrumentTypeCode;
|
||||||
|
|
||||||
/** instrumentTypeName */
|
@ApiModelProperty(value = "仪器类型名称")
|
||||||
private String instrumentTypeName;
|
private String instrumentTypeName;
|
||||||
|
|
||||||
/** deviceTypeCode */
|
@ApiModelProperty(value = "设备类型编码")
|
||||||
private String deviceTypeCode;
|
private String deviceTypeCode;
|
||||||
|
|
||||||
/** deviceTypeName */
|
@ApiModelProperty(value = "设备类型名称")
|
||||||
private String deviceTypeName;
|
private String deviceTypeName;
|
||||||
|
|
||||||
/** manufacturer */
|
@ApiModelProperty(value = "生产厂家")
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
|
||||||
/** flowDesc */
|
@ApiModelProperty(value = "流量描述")
|
||||||
private String flowDesc;
|
private String flowDesc;
|
||||||
|
|
||||||
/** minFlow */
|
@ApiModelProperty(value = "最小流量")
|
||||||
private BigDecimal minFlow;
|
private BigDecimal minFlow;
|
||||||
|
|
||||||
/** maxFlow */
|
@ApiModelProperty(value = "最大流量")
|
||||||
private BigDecimal maxFlow;
|
private BigDecimal maxFlow;
|
||||||
|
|
||||||
/** calibrationUnit */
|
@ApiModelProperty(value = "校准单位")
|
||||||
private String calibrationUnit;
|
private String calibrationUnit;
|
||||||
|
|
||||||
/** calibrationInitValue */
|
@ApiModelProperty(value = "校准初始值")
|
||||||
private String calibrationInitValue;
|
private String calibrationInitValue;
|
||||||
|
|
||||||
/** fieldCalibrationTypeCode */
|
@ApiModelProperty(value = "现场校准类型编码")
|
||||||
private String fieldCalibrationTypeCode;
|
private String fieldCalibrationTypeCode;
|
||||||
|
|
||||||
/** fieldCalibrationTypeName */
|
@ApiModelProperty(value = "现场校准类型名称")
|
||||||
private String fieldCalibrationTypeName;
|
private String fieldCalibrationTypeName;
|
||||||
|
|
||||||
/** dualChannelFlag */
|
@ApiModelProperty(value = "是否双通道")
|
||||||
private Integer dualChannelFlag;
|
private Integer dualChannelFlag;
|
||||||
|
|
||||||
/** enableFlag */
|
@ApiModelProperty(value = "是否启用")
|
||||||
private Integer enableFlag;
|
private Integer enableFlag;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
|
@ -13,144 +14,144 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class OrgInfoCO {
|
public class OrgInfoCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** unitName */
|
@ApiModelProperty(value = "单位名称")
|
||||||
private String unitName;
|
private String unitName;
|
||||||
|
|
||||||
/** creditCode */
|
@ApiModelProperty(value = "统一社会信用代码")
|
||||||
private String creditCode;
|
private String creditCode;
|
||||||
|
|
||||||
/** safetyIndustryCategoryCode */
|
@ApiModelProperty(value = "安全行业类别编码")
|
||||||
private String safetyIndustryCategoryCode;
|
private String safetyIndustryCategoryCode;
|
||||||
|
|
||||||
/** safetyIndustryCategoryName */
|
@ApiModelProperty(value = "安全行业类别名称")
|
||||||
private String safetyIndustryCategoryName;
|
private String safetyIndustryCategoryName;
|
||||||
|
|
||||||
/** districtCode */
|
@ApiModelProperty(value = "区划编码")
|
||||||
private String districtCode;
|
private String districtCode;
|
||||||
|
|
||||||
/** districtName */
|
@ApiModelProperty(value = "区划名称")
|
||||||
private String districtName;
|
private String districtName;
|
||||||
|
|
||||||
/** townStreet */
|
@ApiModelProperty(value = "镇街")
|
||||||
private String townStreet;
|
private String townStreet;
|
||||||
|
|
||||||
/** villageCommunity */
|
@ApiModelProperty(value = "村社区")
|
||||||
private String villageCommunity;
|
private String villageCommunity;
|
||||||
|
|
||||||
/** longitude */
|
@ApiModelProperty(value = "经度")
|
||||||
private BigDecimal longitude;
|
private BigDecimal longitude;
|
||||||
|
|
||||||
/** latitude */
|
@ApiModelProperty(value = "纬度")
|
||||||
private BigDecimal latitude;
|
private BigDecimal latitude;
|
||||||
|
|
||||||
/** registerAddress */
|
@ApiModelProperty(value = "注册地址")
|
||||||
private String registerAddress;
|
private String registerAddress;
|
||||||
|
|
||||||
/** businessAddress */
|
@ApiModelProperty(value = "经营地址")
|
||||||
private String businessAddress;
|
private String businessAddress;
|
||||||
|
|
||||||
/** ownershipTypeCode */
|
@ApiModelProperty(value = "所有制类型编码")
|
||||||
private String ownershipTypeCode;
|
private String ownershipTypeCode;
|
||||||
|
|
||||||
/** ownershipTypeName */
|
@ApiModelProperty(value = "所有制类型名称")
|
||||||
private String ownershipTypeName;
|
private String ownershipTypeName;
|
||||||
|
|
||||||
/** legalRepresentative */
|
@ApiModelProperty(value = "法定代表人")
|
||||||
private String legalRepresentative;
|
private String legalRepresentative;
|
||||||
|
|
||||||
/** legalRepresentativePhone */
|
@ApiModelProperty(value = "法定代表人电话")
|
||||||
private String legalRepresentativePhone;
|
private String legalRepresentativePhone;
|
||||||
|
|
||||||
/** principalName */
|
@ApiModelProperty(value = "负责人姓名")
|
||||||
private String principalName;
|
private String principalName;
|
||||||
|
|
||||||
/** principalPhone */
|
@ApiModelProperty(value = "负责人电话")
|
||||||
private String principalPhone;
|
private String principalPhone;
|
||||||
|
|
||||||
/** safetyDeptManager */
|
@ApiModelProperty(value = "安全部门负责人")
|
||||||
private String safetyDeptManager;
|
private String safetyDeptManager;
|
||||||
|
|
||||||
/** safetyDeptManagerPhone */
|
@ApiModelProperty(value = "安全部门负责人电话")
|
||||||
private String safetyDeptManagerPhone;
|
private String safetyDeptManagerPhone;
|
||||||
|
|
||||||
/** safetyDeputyPhone */
|
@ApiModelProperty(value = "安全副职电话")
|
||||||
private String safetyDeputyPhone;
|
private String safetyDeputyPhone;
|
||||||
|
|
||||||
/** productionDate */
|
@ApiModelProperty(value = "投产日期")
|
||||||
private LocalDate productionDate;
|
private LocalDate productionDate;
|
||||||
|
|
||||||
/** businessStatusCode */
|
@ApiModelProperty(value = "经营状态编码")
|
||||||
private Integer businessStatusCode;
|
private Integer businessStatusCode;
|
||||||
|
|
||||||
/** businessStatusName */
|
@ApiModelProperty(value = "经营状态名称")
|
||||||
private String businessStatusName;
|
private String businessStatusName;
|
||||||
|
|
||||||
/** infoDisclosureUrl */
|
@ApiModelProperty(value = "信息公开网址")
|
||||||
private String infoDisclosureUrl;
|
private String infoDisclosureUrl;
|
||||||
|
|
||||||
/** workplaceArea */
|
@ApiModelProperty(value = "办公场所面积")
|
||||||
private BigDecimal workplaceArea;
|
private BigDecimal workplaceArea;
|
||||||
|
|
||||||
/** archiveRoomArea */
|
@ApiModelProperty(value = "档案室面积")
|
||||||
private BigDecimal archiveRoomArea;
|
private BigDecimal archiveRoomArea;
|
||||||
|
|
||||||
/** fulltimeEvaluatorCount */
|
@ApiModelProperty(value = "专职评价人员数量")
|
||||||
private Integer fulltimeEvaluatorCount;
|
private Integer fulltimeEvaluatorCount;
|
||||||
|
|
||||||
/** registeredEngineerCount */
|
@ApiModelProperty(value = "注册安全工程师数量")
|
||||||
private Integer registeredEngineerCount;
|
private Integer registeredEngineerCount;
|
||||||
|
|
||||||
/** economyIndustryCode */
|
@ApiModelProperty(value = "经济行业编码")
|
||||||
private String economyIndustryCode;
|
private String economyIndustryCode;
|
||||||
|
|
||||||
/** economyIndustryName */
|
@ApiModelProperty(value = "经济行业名称")
|
||||||
private String economyIndustryName;
|
private String economyIndustryName;
|
||||||
|
|
||||||
/** authStatusCode */
|
@ApiModelProperty(value = "认证状态编码")
|
||||||
private Integer authStatusCode;
|
private Integer authStatusCode;
|
||||||
|
|
||||||
/** authStatusName */
|
@ApiModelProperty(value = "认证状态名称")
|
||||||
private String authStatusName;
|
private String authStatusName;
|
||||||
|
|
||||||
/** enterpriseStatusCode */
|
@ApiModelProperty(value = "企业状态编码")
|
||||||
private Integer enterpriseStatusCode;
|
private Integer enterpriseStatusCode;
|
||||||
|
|
||||||
/** enterpriseStatusName */
|
@ApiModelProperty(value = "企业状态名称")
|
||||||
private String enterpriseStatusName;
|
private String enterpriseStatusName;
|
||||||
|
|
||||||
/** enterpriseScaleCode */
|
@ApiModelProperty(value = "企业规模编码")
|
||||||
private String enterpriseScaleCode;
|
private String enterpriseScaleCode;
|
||||||
|
|
||||||
/** enterpriseScaleName */
|
@ApiModelProperty(value = "企业规模名称")
|
||||||
private String enterpriseScaleName;
|
private String enterpriseScaleName;
|
||||||
|
|
||||||
/** filingTypeCode */
|
@ApiModelProperty(value = "备案类型编码")
|
||||||
private String filingTypeCode;
|
private String filingTypeCode;
|
||||||
|
|
||||||
/** filingTypeName */
|
@ApiModelProperty(value = "备案类型名称")
|
||||||
private String filingTypeName;
|
private String filingTypeName;
|
||||||
|
|
||||||
/** filingRecordStatusCode */
|
@ApiModelProperty(value = "备案记录状态编码")
|
||||||
private Integer filingRecordStatusCode;
|
private Integer filingRecordStatusCode;
|
||||||
|
|
||||||
/** filingRecordStatusName */
|
@ApiModelProperty(value = "备案记录状态名称")
|
||||||
private String filingRecordStatusName;
|
private String filingRecordStatusName;
|
||||||
|
|
||||||
/** attachmentUrls */
|
@ApiModelProperty(value = "附件地址列表")
|
||||||
private String attachmentUrls;
|
private String attachmentUrls;
|
||||||
|
|
||||||
/** 状态(0启用1禁用) */
|
@ApiModelProperty(value = "状态(0启用1禁用)")
|
||||||
private Integer state;
|
private Integer state;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
|
|
||||||
/** 单位ID */
|
@ApiModelProperty(value = "单位ID")
|
||||||
private Long orgId;
|
private Long orgId;
|
||||||
|
|
||||||
/** 创建时间(开户时间) */
|
@ApiModelProperty(value = "创建时间(开户时间)")
|
||||||
private LocalDateTime createTime;
|
private LocalDateTime createTime;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
|
|
@ -11,123 +12,123 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class OrgPersonnelCO {
|
public class OrgPersonnelCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** deptId */
|
@ApiModelProperty(value = "部门ID")
|
||||||
private Long deptId;
|
private Long deptId;
|
||||||
|
|
||||||
/** postId */
|
@ApiModelProperty(value = "岗位ID")
|
||||||
private Long postId;
|
private Long postId;
|
||||||
|
|
||||||
/** userName */
|
@ApiModelProperty(value = "用户姓名")
|
||||||
private String userName;
|
private String userName;
|
||||||
|
|
||||||
/** account */
|
@ApiModelProperty(value = "账号")
|
||||||
private String account;
|
private String account;
|
||||||
|
|
||||||
/** genderCode */
|
@ApiModelProperty(value = "性别编码")
|
||||||
private Integer genderCode;
|
private Integer genderCode;
|
||||||
|
|
||||||
/** genderName */
|
@ApiModelProperty(value = "性别名称")
|
||||||
private String genderName;
|
private String genderName;
|
||||||
|
|
||||||
/** birthDate */
|
@ApiModelProperty(value = "出生日期")
|
||||||
private LocalDate birthDate;
|
private LocalDate birthDate;
|
||||||
|
|
||||||
/** idCardNo */
|
@ApiModelProperty(value = "身份证号")
|
||||||
private String idCardNo;
|
private String idCardNo;
|
||||||
|
|
||||||
/** currentAddress */
|
@ApiModelProperty(value = "现住地址")
|
||||||
private String currentAddress;
|
private String currentAddress;
|
||||||
|
|
||||||
/** officeAddress */
|
@ApiModelProperty(value = "办公地址")
|
||||||
private String officeAddress;
|
private String officeAddress;
|
||||||
|
|
||||||
/** educationCode */
|
@ApiModelProperty(value = "学历编码")
|
||||||
private String educationCode;
|
private String educationCode;
|
||||||
|
|
||||||
/** educationName */
|
@ApiModelProperty(value = "学历名称")
|
||||||
private String educationName;
|
private String educationName;
|
||||||
|
|
||||||
/** graduateSchool */
|
@ApiModelProperty(value = "毕业院校")
|
||||||
private String graduateSchool;
|
private String graduateSchool;
|
||||||
|
|
||||||
/** major */
|
@ApiModelProperty(value = "专业")
|
||||||
private String major;
|
private String major;
|
||||||
|
|
||||||
/** employmentStatusCode */
|
@ApiModelProperty(value = "从业状态编码")
|
||||||
private Integer employmentStatusCode;
|
private Integer employmentStatusCode;
|
||||||
|
|
||||||
/** employmentStatusName */
|
@ApiModelProperty(value = "从业状态名称")
|
||||||
private String employmentStatusName;
|
private String employmentStatusName;
|
||||||
|
|
||||||
/** personTypeCode */
|
@ApiModelProperty(value = "人员类型编码")
|
||||||
private String personTypeCode;
|
private String personTypeCode;
|
||||||
|
|
||||||
/** personTypeName */
|
@ApiModelProperty(value = "人员类型名称")
|
||||||
private String personTypeName;
|
private String personTypeName;
|
||||||
|
|
||||||
/** qualScope */
|
@ApiModelProperty(value = "资质范围")
|
||||||
private String qualScope;
|
private String qualScope;
|
||||||
|
|
||||||
/** professionalLevelCode */
|
@ApiModelProperty(value = "职业资格等级编码")
|
||||||
private String professionalLevelCode;
|
private String professionalLevelCode;
|
||||||
|
|
||||||
/** professionalLevelName */
|
@ApiModelProperty(value = "职业资格等级名称")
|
||||||
private String professionalLevelName;
|
private String professionalLevelName;
|
||||||
|
|
||||||
/** evaluatorCertNo */
|
@ApiModelProperty(value = "评价师证书编号")
|
||||||
private String evaluatorCertNo;
|
private String evaluatorCertNo;
|
||||||
|
|
||||||
/** educationTypeCode */
|
@ApiModelProperty(value = "教育类型编码")
|
||||||
private String educationTypeCode;
|
private String educationTypeCode;
|
||||||
|
|
||||||
/** educationTypeName */
|
@ApiModelProperty(value = "教育类型名称")
|
||||||
private String educationTypeName;
|
private String educationTypeName;
|
||||||
|
|
||||||
/** educationLevelCode */
|
@ApiModelProperty(value = "教育水平编码")
|
||||||
private String educationLevelCode;
|
private String educationLevelCode;
|
||||||
|
|
||||||
/** educationLevelName */
|
@ApiModelProperty(value = "教育水平名称")
|
||||||
private String educationLevelName;
|
private String educationLevelName;
|
||||||
|
|
||||||
/** titleName */
|
@ApiModelProperty(value = "职称名称")
|
||||||
private String titleName;
|
private String titleName;
|
||||||
|
|
||||||
/** registerEngineerFlag */
|
@ApiModelProperty(value = "是否注册安全工程师")
|
||||||
private Integer registerEngineerFlag;
|
private Integer registerEngineerFlag;
|
||||||
|
|
||||||
/** publications */
|
@ApiModelProperty(value = "发表著作")
|
||||||
private String publications;
|
private String publications;
|
||||||
|
|
||||||
/** abilityDeclaration */
|
@ApiModelProperty(value = "能力声明")
|
||||||
private String abilityDeclaration;
|
private String abilityDeclaration;
|
||||||
|
|
||||||
/** workExperience */
|
@ApiModelProperty(value = "工作经历")
|
||||||
private String workExperience;
|
private String workExperience;
|
||||||
|
|
||||||
/** proofMaterialUrl */
|
@ApiModelProperty(value = "证明材料附件地址")
|
||||||
private String proofMaterialUrl;
|
private String proofMaterialUrl;
|
||||||
|
|
||||||
/** 部门名称(列表展示,非持久化) */
|
@ApiModelProperty(value = "部门名称(列表展示,非持久化)")
|
||||||
private String deptName;
|
private String deptName;
|
||||||
|
|
||||||
/** 岗位名称(列表展示,非持久化) */
|
@ApiModelProperty(value = "岗位名称(列表展示,非持久化)")
|
||||||
private String postName;
|
private String postName;
|
||||||
|
|
||||||
/** 证书名称汇总(列表展示,非持久化) */
|
@ApiModelProperty(value = "证书名称汇总(列表展示,非持久化)")
|
||||||
private String certNames;
|
private String certNames;
|
||||||
|
|
||||||
/** 信息变更次数(列表展示,非持久化) */
|
@ApiModelProperty(value = "信息变更次数(列表展示,非持久化)")
|
||||||
private Integer changeCount;
|
private Integer changeCount;
|
||||||
|
|
||||||
/** 离职申请ID(列表展示,非持久化) */
|
@ApiModelProperty(value = "离职申请ID(列表展示,非持久化)")
|
||||||
private Long resignApplyId;
|
private Long resignApplyId;
|
||||||
|
|
||||||
/** 离职申请审核状态(列表展示,非持久化) */
|
@ApiModelProperty(value = "离职申请审核状态(列表展示,非持久化)")
|
||||||
private Integer resignAuditStatus;
|
private Integer resignAuditStatus;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
|
|
@ -11,51 +12,51 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class OrgPersonnelCertCO {
|
public class OrgPersonnelCertCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** personnelId */
|
@ApiModelProperty(value = "人员ID")
|
||||||
private Long personnelId;
|
private Long personnelId;
|
||||||
|
|
||||||
/** certName */
|
@ApiModelProperty(value = "证书名称")
|
||||||
private String certName;
|
private String certName;
|
||||||
|
|
||||||
/** certTypeCode */
|
@ApiModelProperty(value = "证书类型编码")
|
||||||
private String certTypeCode;
|
private String certTypeCode;
|
||||||
|
|
||||||
/** certTypeName */
|
@ApiModelProperty(value = "证书类型名称")
|
||||||
private String certTypeName;
|
private String certTypeName;
|
||||||
|
|
||||||
/** certCategoryCode */
|
@ApiModelProperty(value = "证书分类编码")
|
||||||
private String certCategoryCode;
|
private String certCategoryCode;
|
||||||
|
|
||||||
/** certCategoryName */
|
@ApiModelProperty(value = "证书分类名称")
|
||||||
private String certCategoryName;
|
private String certCategoryName;
|
||||||
|
|
||||||
/** operationCategoryCode */
|
@ApiModelProperty(value = "操作类别编码")
|
||||||
private String operationCategoryCode;
|
private String operationCategoryCode;
|
||||||
|
|
||||||
/** operationCategoryName */
|
@ApiModelProperty(value = "操作类别名称")
|
||||||
private String operationCategoryName;
|
private String operationCategoryName;
|
||||||
|
|
||||||
/** certNo */
|
@ApiModelProperty(value = "证书编号")
|
||||||
private String certNo;
|
private String certNo;
|
||||||
|
|
||||||
/** issueOrg */
|
@ApiModelProperty(value = "发证机构")
|
||||||
private String issueOrg;
|
private String issueOrg;
|
||||||
|
|
||||||
/** validStartDate */
|
@ApiModelProperty(value = "有效期开始日期")
|
||||||
private LocalDate validStartDate;
|
private LocalDate validStartDate;
|
||||||
|
|
||||||
/** validEndDate */
|
@ApiModelProperty(value = "有效期结束日期")
|
||||||
private LocalDate validEndDate;
|
private LocalDate validEndDate;
|
||||||
|
|
||||||
/** reviewDate */
|
@ApiModelProperty(value = "复审日期")
|
||||||
private LocalDate reviewDate;
|
private LocalDate reviewDate;
|
||||||
|
|
||||||
/** certAttachmentUrl */
|
@ApiModelProperty(value = "证书附件地址")
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
@ -12,21 +13,21 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class OrgPersonnelChangeCO {
|
public class OrgPersonnelChangeCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** personnelId */
|
@ApiModelProperty(value = "人员ID")
|
||||||
private Long personnelId;
|
private Long personnelId;
|
||||||
|
|
||||||
/** changeItem */
|
@ApiModelProperty(value = "变更事项")
|
||||||
private String changeItem;
|
private String changeItem;
|
||||||
|
|
||||||
/** changeTime */
|
@ApiModelProperty(value = "变更时间")
|
||||||
private LocalDateTime changeTime;
|
private LocalDateTime changeTime;
|
||||||
|
|
||||||
/** operatorName */
|
@ApiModelProperty(value = "操作人姓名")
|
||||||
private String operatorName;
|
private String operatorName;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -10,21 +11,21 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class OrgPositionCO {
|
public class OrgPositionCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** deptId */
|
@ApiModelProperty(value = "部门ID")
|
||||||
private Long deptId;
|
private Long deptId;
|
||||||
|
|
||||||
/** positionName */
|
@ApiModelProperty(value = "岗位名称")
|
||||||
private String positionName;
|
private String positionName;
|
||||||
|
|
||||||
/** dutyDesc */
|
@ApiModelProperty(value = "职责描述")
|
||||||
private String dutyDesc;
|
private String dutyDesc;
|
||||||
|
|
||||||
/** 备注 */
|
@ApiModelProperty(value = "备注")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
|
|
@ -11,42 +12,42 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class OrgQualificationCO {
|
public class OrgQualificationCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** licenseTypeCode */
|
@ApiModelProperty(value = "证照类型编码")
|
||||||
private String licenseTypeCode;
|
private String licenseTypeCode;
|
||||||
|
|
||||||
/** licenseTypeName */
|
@ApiModelProperty(value = "证照类型名称")
|
||||||
private String licenseTypeName;
|
private String licenseTypeName;
|
||||||
|
|
||||||
/** certName */
|
@ApiModelProperty(value = "证书名称")
|
||||||
private String certName;
|
private String certName;
|
||||||
|
|
||||||
/** certNo */
|
@ApiModelProperty(value = "证书编号")
|
||||||
private String certNo;
|
private String certNo;
|
||||||
|
|
||||||
/** issueDate */
|
@ApiModelProperty(value = "发证日期")
|
||||||
private LocalDate issueDate;
|
private LocalDate issueDate;
|
||||||
|
|
||||||
/** issueOrg */
|
@ApiModelProperty(value = "发证机构")
|
||||||
private String issueOrg;
|
private String issueOrg;
|
||||||
|
|
||||||
/** validStartDate */
|
@ApiModelProperty(value = "有效期开始日期")
|
||||||
private LocalDate validStartDate;
|
private LocalDate validStartDate;
|
||||||
|
|
||||||
/** validEndDate */
|
@ApiModelProperty(value = "有效期结束日期")
|
||||||
private LocalDate validEndDate;
|
private LocalDate validEndDate;
|
||||||
|
|
||||||
/** certImageUrl */
|
@ApiModelProperty(value = "证书图片地址")
|
||||||
private String certImageUrl;
|
private String certImageUrl;
|
||||||
|
|
||||||
/** enableFlag */
|
@ApiModelProperty(value = "是否启用")
|
||||||
private Integer enableFlag;
|
private Integer enableFlag;
|
||||||
|
|
||||||
/** 备注 */
|
@ApiModelProperty(value = "备注")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -12,45 +13,45 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class OrgResignApplyCO {
|
public class OrgResignApplyCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** personnelId */
|
@ApiModelProperty(value = "人员ID")
|
||||||
private Long personnelId;
|
private Long personnelId;
|
||||||
|
|
||||||
/** applicantName */
|
@ApiModelProperty(value = "申请人姓名")
|
||||||
private String applicantName;
|
private String applicantName;
|
||||||
|
|
||||||
/** applyTime */
|
@ApiModelProperty(value = "申请时间")
|
||||||
private LocalDateTime applyTime;
|
private LocalDateTime applyTime;
|
||||||
|
|
||||||
/** resignReason */
|
@ApiModelProperty(value = "离职原因")
|
||||||
private String resignReason;
|
private String resignReason;
|
||||||
|
|
||||||
/** expectedResignDate */
|
@ApiModelProperty(value = "预计离职日期")
|
||||||
private LocalDate expectedResignDate;
|
private LocalDate expectedResignDate;
|
||||||
|
|
||||||
/** reportFileUrl */
|
@ApiModelProperty(value = "报告文件地址")
|
||||||
private String reportFileUrl;
|
private String reportFileUrl;
|
||||||
|
|
||||||
/** auditStatusCode */
|
@ApiModelProperty(value = "审核状态编码")
|
||||||
private Integer auditStatusCode;
|
private Integer auditStatusCode;
|
||||||
|
|
||||||
/** auditStatusName */
|
@ApiModelProperty(value = "审核状态名称")
|
||||||
private String auditStatusName;
|
private String auditStatusName;
|
||||||
|
|
||||||
/** rejectReason */
|
@ApiModelProperty(value = "打回原因")
|
||||||
private String rejectReason;
|
private String rejectReason;
|
||||||
|
|
||||||
/** 申请备注 */
|
@ApiModelProperty(value = "申请备注")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
/** 人员账号(列表展示,非持久化) */
|
@ApiModelProperty(value = "人员账号(列表展示,非持久化)")
|
||||||
private String account;
|
private String account;
|
||||||
|
|
||||||
/** 部门名称(列表展示,非持久化) */
|
@ApiModelProperty(value = "部门名称(列表展示,非持久化)")
|
||||||
private String deptName;
|
private String deptName;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -11,84 +12,84 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class QualFilingChangeCO {
|
public class QualFilingChangeCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** originFilingId */
|
@ApiModelProperty(value = "原始备案ID")
|
||||||
private Long originFilingId;
|
private Long originFilingId;
|
||||||
|
|
||||||
/** changeFilingId */
|
@ApiModelProperty(value = "变更备案ID")
|
||||||
private Long changeFilingId;
|
private Long changeFilingId;
|
||||||
|
|
||||||
/** filingTerritoryCode */
|
@ApiModelProperty(value = "备案地区编码")
|
||||||
private String filingTerritoryCode;
|
private String filingTerritoryCode;
|
||||||
|
|
||||||
/** filingTerritoryName */
|
@ApiModelProperty(value = "备案地区名称")
|
||||||
private String filingTerritoryName;
|
private String filingTerritoryName;
|
||||||
|
|
||||||
/** filingUnitName */
|
@ApiModelProperty(value = "备案单位名称")
|
||||||
private String filingUnitName;
|
private String filingUnitName;
|
||||||
|
|
||||||
/** filingUnitTypeCode */
|
@ApiModelProperty(value = "备案单位类型编码")
|
||||||
private String filingUnitTypeCode;
|
private String filingUnitTypeCode;
|
||||||
|
|
||||||
/** filingUnitTypeName */
|
@ApiModelProperty(value = "备案单位类型名称")
|
||||||
private String filingUnitTypeName;
|
private String filingUnitTypeName;
|
||||||
|
|
||||||
/** filingNo */
|
@ApiModelProperty(value = "备案编号")
|
||||||
private String filingNo;
|
private String filingNo;
|
||||||
|
|
||||||
/** businessScope */
|
@ApiModelProperty(value = "经营范围")
|
||||||
private String businessScope;
|
private String businessScope;
|
||||||
|
|
||||||
/** registerAddress */
|
@ApiModelProperty(value = "注册地址")
|
||||||
private String registerAddress;
|
private String registerAddress;
|
||||||
|
|
||||||
/** officeAddress */
|
@ApiModelProperty(value = "办公地址")
|
||||||
private String officeAddress;
|
private String officeAddress;
|
||||||
|
|
||||||
/** creditCode */
|
@ApiModelProperty(value = "统一社会信用代码")
|
||||||
private String creditCode;
|
private String creditCode;
|
||||||
|
|
||||||
/** qualCertNo */
|
@ApiModelProperty(value = "资质证书编号")
|
||||||
private String qualCertNo;
|
private String qualCertNo;
|
||||||
|
|
||||||
/** legalPersonPhone */
|
@ApiModelProperty(value = "法定代表人电话")
|
||||||
private String legalPersonPhone;
|
private String legalPersonPhone;
|
||||||
|
|
||||||
/** contactPhone */
|
@ApiModelProperty(value = "联系电话")
|
||||||
private String contactPhone;
|
private String contactPhone;
|
||||||
|
|
||||||
/** infoDisclosureUrl */
|
@ApiModelProperty(value = "信息公开网址")
|
||||||
private String infoDisclosureUrl;
|
private String infoDisclosureUrl;
|
||||||
|
|
||||||
/** fixedAssetAmount */
|
@ApiModelProperty(value = "固定资产总额")
|
||||||
private Long fixedAssetAmount;
|
private Long fixedAssetAmount;
|
||||||
|
|
||||||
/** archiveRoomArea */
|
@ApiModelProperty(value = "档案室面积")
|
||||||
private BigDecimal archiveRoomArea;
|
private BigDecimal archiveRoomArea;
|
||||||
|
|
||||||
/** fulltimeEvaluatorCount */
|
@ApiModelProperty(value = "专职评价人员数量")
|
||||||
private Integer fulltimeEvaluatorCount;
|
private Integer fulltimeEvaluatorCount;
|
||||||
|
|
||||||
/** registeredEngineerCount */
|
@ApiModelProperty(value = "注册安全工程师数量")
|
||||||
private Integer registeredEngineerCount;
|
private Integer registeredEngineerCount;
|
||||||
|
|
||||||
/** workplaceArea */
|
@ApiModelProperty(value = "办公场所面积")
|
||||||
private BigDecimal workplaceArea;
|
private BigDecimal workplaceArea;
|
||||||
|
|
||||||
/** unitIntro */
|
@ApiModelProperty(value = "单位简介")
|
||||||
private String unitIntro;
|
private String unitIntro;
|
||||||
|
|
||||||
/** attachmentUrl */
|
@ApiModelProperty(value = "附件地址")
|
||||||
private String attachmentUrl;
|
private String attachmentUrl;
|
||||||
|
|
||||||
/** filingStatusCode */
|
@ApiModelProperty(value = "备案状态编码")
|
||||||
private Integer filingStatusCode;
|
private Integer filingStatusCode;
|
||||||
|
|
||||||
/** filingStatusName */
|
@ApiModelProperty(value = "备案状态名称")
|
||||||
private String filingStatusName;
|
private String filingStatusName;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 备案变更明细CO(Client Object)
|
* 备案变更明细CO(Client Object)
|
||||||
|
|
@ -10,18 +11,18 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class QualFilingChangeDetailCO {
|
public class QualFilingChangeDetailCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** changeId */
|
@ApiModelProperty(value = "变更ID")
|
||||||
private Long changeId;
|
private Long changeId;
|
||||||
|
|
||||||
/** changeField */
|
@ApiModelProperty(value = "变更字段")
|
||||||
private String changeField;
|
private String changeField;
|
||||||
|
|
||||||
/** changeContent */
|
@ApiModelProperty(value = "变更内容")
|
||||||
private String changeContent;
|
private String changeContent;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
@ -10,7 +11,9 @@ import java.util.List;
|
||||||
@Data
|
@Data
|
||||||
public class QualFilingChangeHistoryCO {
|
public class QualFilingChangeHistoryCO {
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "变更次数")
|
||||||
private Integer changeCount;
|
private Integer changeCount;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "变更历史记录列表")
|
||||||
private List<QualFilingChangeHistoryItemCO> records;
|
private List<QualFilingChangeHistoryItemCO> records;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
package org.qinan.safetyeval.client.co;
|
package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
|
|
@ -10,14 +11,15 @@ import java.time.LocalDateTime;
|
||||||
@Data
|
@Data
|
||||||
public class QualFilingChangeHistoryItemCO {
|
public class QualFilingChangeHistoryItemCO {
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** 变更事项(5 步表单名称) */
|
@ApiModelProperty(value = "变更事项(5步表单名称)")
|
||||||
private String changeItemName;
|
private String changeItemName;
|
||||||
|
|
||||||
/** 变更时间 */
|
@ApiModelProperty(value = "变更时间")
|
||||||
private LocalDateTime changeTime;
|
private LocalDateTime changeTime;
|
||||||
|
|
||||||
/** 操作人 */
|
@ApiModelProperty(value = "操作人")
|
||||||
private String operatorName;
|
private String operatorName;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ package org.qinan.safetyeval.client.co;
|
||||||
|
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 备案申请人员证书CO(Client Object)
|
* 备案申请人员证书CO(Client Object)
|
||||||
|
|
@ -11,54 +12,54 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class QualFilingPersonnelCertCO {
|
public class QualFilingPersonnelCertCO {
|
||||||
|
|
||||||
/** 主键ID */
|
@ApiModelProperty(value = "主键ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
/** filingId */
|
@ApiModelProperty(value = "备案ID")
|
||||||
private Long filingId;
|
private Long filingId;
|
||||||
|
|
||||||
/** filingPersonnelId */
|
@ApiModelProperty(value = "备案人员ID")
|
||||||
private Long filingPersonnelId;
|
private Long filingPersonnelId;
|
||||||
|
|
||||||
/** certName */
|
@ApiModelProperty(value = "证书名称")
|
||||||
private String certName;
|
private String certName;
|
||||||
|
|
||||||
/** certTypeCode */
|
@ApiModelProperty(value = "证书类型编码")
|
||||||
private String certTypeCode;
|
private String certTypeCode;
|
||||||
|
|
||||||
/** certTypeName */
|
@ApiModelProperty(value = "证书类型名称")
|
||||||
private String certTypeName;
|
private String certTypeName;
|
||||||
|
|
||||||
/** certCategoryCode */
|
@ApiModelProperty(value = "证书分类编码")
|
||||||
private String certCategoryCode;
|
private String certCategoryCode;
|
||||||
|
|
||||||
/** certCategoryName */
|
@ApiModelProperty(value = "证书分类名称")
|
||||||
private String certCategoryName;
|
private String certCategoryName;
|
||||||
|
|
||||||
/** operationCategoryCode */
|
@ApiModelProperty(value = "操作类别编码")
|
||||||
private String operationCategoryCode;
|
private String operationCategoryCode;
|
||||||
|
|
||||||
/** operationCategoryName */
|
@ApiModelProperty(value = "操作类别名称")
|
||||||
private String operationCategoryName;
|
private String operationCategoryName;
|
||||||
|
|
||||||
/** certNo */
|
@ApiModelProperty(value = "证书编号")
|
||||||
private String certNo;
|
private String certNo;
|
||||||
|
|
||||||
/** issueOrg */
|
@ApiModelProperty(value = "发证机构")
|
||||||
private String issueOrg;
|
private String issueOrg;
|
||||||
|
|
||||||
/** validStartDate */
|
@ApiModelProperty(value = "有效期开始日期")
|
||||||
private LocalDate validStartDate;
|
private LocalDate validStartDate;
|
||||||
|
|
||||||
/** validEndDate */
|
@ApiModelProperty(value = "有效期结束日期")
|
||||||
private LocalDate validEndDate;
|
private LocalDate validEndDate;
|
||||||
|
|
||||||
/** reviewDate */
|
@ApiModelProperty(value = "复审日期")
|
||||||
private LocalDate reviewDate;
|
private LocalDate reviewDate;
|
||||||
|
|
||||||
/** certAttachmentUrl */
|
@ApiModelProperty(value = "证书附件地址")
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
|
||||||
/** 租户ID */
|
@ApiModelProperty(value = "租户ID")
|
||||||
private Long tenantId;
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue