@ApiModelProperty

dev-deployment
luotaiqian 2026-07-01 13:33:01 +08:00
parent a4b6f79f96
commit b02598a581
15 changed files with 248 additions and 229 deletions

View File

@ -1,5 +1,6 @@
package org.qinan.safetyeval.client.co;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.time.LocalDateTime;
@ -12,30 +13,30 @@ import java.time.LocalDateTime;
@Data
public class FileInfoCO {
/** 文件ID */
@ApiModelProperty(value = "文件ID")
private Integer id;
/** OSS文件访问URL */
@ApiModelProperty(value = "OSS文件访问URL")
private String url;
/** 文件签名URL带过期时间的临时访问链接 */
@ApiModelProperty(value = "文件签名URL带过期时间的临时访问链接")
private String presignedUrl;
/** 文件大小(字节) */
@ApiModelProperty(value = "文件大小(字节)")
private Long size;
/** 文件原始名称 */
@ApiModelProperty(value = "文件原始名称")
private String originalFilename;
/** 文件扩展名 */
@ApiModelProperty(value = "文件扩展名")
private String ext;
/** 文件MIME类型 */
@ApiModelProperty(value = "文件MIME类型")
private String contentType;
/** 上传者姓名 */
@ApiModelProperty(value = "上传者姓名")
private String creatorName;
/** 上传时间 */
@ApiModelProperty(value = "上传时间")
private LocalDateTime createdTime;
}

View File

@ -1,5 +1,6 @@
package org.qinan.safetyeval.client.co;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
@ -10,27 +11,27 @@ import lombok.Data;
@Data
public class OrgDepartmentCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** parentId */
@ApiModelProperty(value = "父部门ID")
private Long parentId;
/** deptName */
@ApiModelProperty(value = "部门名称")
private String deptName;
/** managerName */
@ApiModelProperty(value = "负责人姓名")
private String managerName;
/** managerAccount */
@ApiModelProperty(value = "负责人账号")
private String managerAccount;
/** deptLevelCode */
@ApiModelProperty(value = "部门级别编码")
private String deptLevelCode;
/** deptLevelName */
@ApiModelProperty(value = "部门级别名称")
private String deptLevelName;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
}

View File

@ -1,5 +1,7 @@
package org.qinan.safetyeval.client.co;
import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import lombok.Data;
@ -11,57 +13,57 @@ import lombok.Data;
@Data
public class OrgEquipmentCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** deviceName */
@ApiModelProperty(value = "设备名称")
private String deviceName;
/** deviceModel */
@ApiModelProperty(value = "设备型号")
private String deviceModel;
/** instrumentTypeCode */
@ApiModelProperty(value = "仪器类型编码")
private String instrumentTypeCode;
/** instrumentTypeName */
@ApiModelProperty(value = "仪器类型名称")
private String instrumentTypeName;
/** deviceTypeCode */
@ApiModelProperty(value = "设备类型编码")
private String deviceTypeCode;
/** deviceTypeName */
@ApiModelProperty(value = "设备类型名称")
private String deviceTypeName;
/** manufacturer */
@ApiModelProperty(value = "生产厂家")
private String manufacturer;
/** flowDesc */
@ApiModelProperty(value = "流量描述")
private String flowDesc;
/** minFlow */
@ApiModelProperty(value = "最小流量")
private BigDecimal minFlow;
/** maxFlow */
@ApiModelProperty(value = "最大流量")
private BigDecimal maxFlow;
/** calibrationUnit */
@ApiModelProperty(value = "校准单位")
private String calibrationUnit;
/** calibrationInitValue */
@ApiModelProperty(value = "校准初始值")
private String calibrationInitValue;
/** fieldCalibrationTypeCode */
@ApiModelProperty(value = "现场校准类型编码")
private String fieldCalibrationTypeCode;
/** fieldCalibrationTypeName */
@ApiModelProperty(value = "现场校准类型名称")
private String fieldCalibrationTypeName;
/** dualChannelFlag */
@ApiModelProperty(value = "是否双通道")
private Integer dualChannelFlag;
/** enableFlag */
@ApiModelProperty(value = "是否启用")
private Integer enableFlag;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
}

View File

@ -1,5 +1,6 @@
package org.qinan.safetyeval.client.co;
import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
@ -13,144 +14,144 @@ import lombok.Data;
@Data
public class OrgInfoCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** unitName */
@ApiModelProperty(value = "单位名称")
private String unitName;
/** creditCode */
@ApiModelProperty(value = "统一社会信用代码")
private String creditCode;
/** safetyIndustryCategoryCode */
@ApiModelProperty(value = "安全行业类别编码")
private String safetyIndustryCategoryCode;
/** safetyIndustryCategoryName */
@ApiModelProperty(value = "安全行业类别名称")
private String safetyIndustryCategoryName;
/** districtCode */
@ApiModelProperty(value = "区划编码")
private String districtCode;
/** districtName */
@ApiModelProperty(value = "区划名称")
private String districtName;
/** townStreet */
@ApiModelProperty(value = "镇街")
private String townStreet;
/** villageCommunity */
@ApiModelProperty(value = "村社区")
private String villageCommunity;
/** longitude */
@ApiModelProperty(value = "经度")
private BigDecimal longitude;
/** latitude */
@ApiModelProperty(value = "纬度")
private BigDecimal latitude;
/** registerAddress */
@ApiModelProperty(value = "注册地址")
private String registerAddress;
/** businessAddress */
@ApiModelProperty(value = "经营地址")
private String businessAddress;
/** ownershipTypeCode */
@ApiModelProperty(value = "所有制类型编码")
private String ownershipTypeCode;
/** ownershipTypeName */
@ApiModelProperty(value = "所有制类型名称")
private String ownershipTypeName;
/** legalRepresentative */
@ApiModelProperty(value = "法定代表人")
private String legalRepresentative;
/** legalRepresentativePhone */
@ApiModelProperty(value = "法定代表人电话")
private String legalRepresentativePhone;
/** principalName */
@ApiModelProperty(value = "负责人姓名")
private String principalName;
/** principalPhone */
@ApiModelProperty(value = "负责人电话")
private String principalPhone;
/** safetyDeptManager */
@ApiModelProperty(value = "安全部门负责人")
private String safetyDeptManager;
/** safetyDeptManagerPhone */
@ApiModelProperty(value = "安全部门负责人电话")
private String safetyDeptManagerPhone;
/** safetyDeputyPhone */
@ApiModelProperty(value = "安全副职电话")
private String safetyDeputyPhone;
/** productionDate */
@ApiModelProperty(value = "投产日期")
private LocalDate productionDate;
/** businessStatusCode */
@ApiModelProperty(value = "经营状态编码")
private Integer businessStatusCode;
/** businessStatusName */
@ApiModelProperty(value = "经营状态名称")
private String businessStatusName;
/** infoDisclosureUrl */
@ApiModelProperty(value = "信息公开网址")
private String infoDisclosureUrl;
/** workplaceArea */
@ApiModelProperty(value = "办公场所面积")
private BigDecimal workplaceArea;
/** archiveRoomArea */
@ApiModelProperty(value = "档案室面积")
private BigDecimal archiveRoomArea;
/** fulltimeEvaluatorCount */
@ApiModelProperty(value = "专职评价人员数量")
private Integer fulltimeEvaluatorCount;
/** registeredEngineerCount */
@ApiModelProperty(value = "注册安全工程师数量")
private Integer registeredEngineerCount;
/** economyIndustryCode */
@ApiModelProperty(value = "经济行业编码")
private String economyIndustryCode;
/** economyIndustryName */
@ApiModelProperty(value = "经济行业名称")
private String economyIndustryName;
/** authStatusCode */
@ApiModelProperty(value = "认证状态编码")
private Integer authStatusCode;
/** authStatusName */
@ApiModelProperty(value = "认证状态名称")
private String authStatusName;
/** enterpriseStatusCode */
@ApiModelProperty(value = "企业状态编码")
private Integer enterpriseStatusCode;
/** enterpriseStatusName */
@ApiModelProperty(value = "企业状态名称")
private String enterpriseStatusName;
/** enterpriseScaleCode */
@ApiModelProperty(value = "企业规模编码")
private String enterpriseScaleCode;
/** enterpriseScaleName */
@ApiModelProperty(value = "企业规模名称")
private String enterpriseScaleName;
/** filingTypeCode */
@ApiModelProperty(value = "备案类型编码")
private String filingTypeCode;
/** filingTypeName */
@ApiModelProperty(value = "备案类型名称")
private String filingTypeName;
/** filingRecordStatusCode */
@ApiModelProperty(value = "备案记录状态编码")
private Integer filingRecordStatusCode;
/** filingRecordStatusName */
@ApiModelProperty(value = "备案记录状态名称")
private String filingRecordStatusName;
/** attachmentUrls */
@ApiModelProperty(value = "附件地址列表")
private String attachmentUrls;
/** 状态(0启用1禁用) */
@ApiModelProperty(value = "状态(0启用1禁用)")
private Integer state;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
/** 单位ID */
@ApiModelProperty(value = "单位ID")
private Long orgId;
/** 创建时间(开户时间) */
@ApiModelProperty(value = "创建时间(开户时间)")
private LocalDateTime createTime;
}

View File

@ -1,5 +1,6 @@
package org.qinan.safetyeval.client.co;
import io.swagger.annotations.ApiModelProperty;
import java.time.LocalDate;
import lombok.Data;
@ -11,123 +12,123 @@ import lombok.Data;
@Data
public class OrgPersonnelCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** deptId */
@ApiModelProperty(value = "部门ID")
private Long deptId;
/** postId */
@ApiModelProperty(value = "岗位ID")
private Long postId;
/** userName */
@ApiModelProperty(value = "用户姓名")
private String userName;
/** account */
@ApiModelProperty(value = "账号")
private String account;
/** genderCode */
@ApiModelProperty(value = "性别编码")
private Integer genderCode;
/** genderName */
@ApiModelProperty(value = "性别名称")
private String genderName;
/** birthDate */
@ApiModelProperty(value = "出生日期")
private LocalDate birthDate;
/** idCardNo */
@ApiModelProperty(value = "身份证号")
private String idCardNo;
/** currentAddress */
@ApiModelProperty(value = "现住地址")
private String currentAddress;
/** officeAddress */
@ApiModelProperty(value = "办公地址")
private String officeAddress;
/** educationCode */
@ApiModelProperty(value = "学历编码")
private String educationCode;
/** educationName */
@ApiModelProperty(value = "学历名称")
private String educationName;
/** graduateSchool */
@ApiModelProperty(value = "毕业院校")
private String graduateSchool;
/** major */
@ApiModelProperty(value = "专业")
private String major;
/** employmentStatusCode */
@ApiModelProperty(value = "从业状态编码")
private Integer employmentStatusCode;
/** employmentStatusName */
@ApiModelProperty(value = "从业状态名称")
private String employmentStatusName;
/** personTypeCode */
@ApiModelProperty(value = "人员类型编码")
private String personTypeCode;
/** personTypeName */
@ApiModelProperty(value = "人员类型名称")
private String personTypeName;
/** qualScope */
@ApiModelProperty(value = "资质范围")
private String qualScope;
/** professionalLevelCode */
@ApiModelProperty(value = "职业资格等级编码")
private String professionalLevelCode;
/** professionalLevelName */
@ApiModelProperty(value = "职业资格等级名称")
private String professionalLevelName;
/** evaluatorCertNo */
@ApiModelProperty(value = "评价师证书编号")
private String evaluatorCertNo;
/** educationTypeCode */
@ApiModelProperty(value = "教育类型编码")
private String educationTypeCode;
/** educationTypeName */
@ApiModelProperty(value = "教育类型名称")
private String educationTypeName;
/** educationLevelCode */
@ApiModelProperty(value = "教育水平编码")
private String educationLevelCode;
/** educationLevelName */
@ApiModelProperty(value = "教育水平名称")
private String educationLevelName;
/** titleName */
@ApiModelProperty(value = "职称名称")
private String titleName;
/** registerEngineerFlag */
@ApiModelProperty(value = "是否注册安全工程师")
private Integer registerEngineerFlag;
/** publications */
@ApiModelProperty(value = "发表著作")
private String publications;
/** abilityDeclaration */
@ApiModelProperty(value = "能力声明")
private String abilityDeclaration;
/** workExperience */
@ApiModelProperty(value = "工作经历")
private String workExperience;
/** proofMaterialUrl */
@ApiModelProperty(value = "证明材料附件地址")
private String proofMaterialUrl;
/** 部门名称(列表展示,非持久化) */
@ApiModelProperty(value = "部门名称(列表展示,非持久化)")
private String deptName;
/** 岗位名称(列表展示,非持久化) */
@ApiModelProperty(value = "岗位名称(列表展示,非持久化)")
private String postName;
/** 证书名称汇总(列表展示,非持久化) */
@ApiModelProperty(value = "证书名称汇总(列表展示,非持久化)")
private String certNames;
/** 信息变更次数(列表展示,非持久化) */
@ApiModelProperty(value = "信息变更次数(列表展示,非持久化)")
private Integer changeCount;
/** 离职申请ID列表展示非持久化 */
@ApiModelProperty(value = "离职申请ID列表展示非持久化")
private Long resignApplyId;
/** 离职申请审核状态(列表展示,非持久化) */
@ApiModelProperty(value = "离职申请审核状态(列表展示,非持久化)")
private Integer resignAuditStatus;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
}

View File

@ -1,5 +1,6 @@
package org.qinan.safetyeval.client.co;
import io.swagger.annotations.ApiModelProperty;
import java.time.LocalDate;
import lombok.Data;
@ -11,51 +12,51 @@ import lombok.Data;
@Data
public class OrgPersonnelCertCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** personnelId */
@ApiModelProperty(value = "人员ID")
private Long personnelId;
/** certName */
@ApiModelProperty(value = "证书名称")
private String certName;
/** certTypeCode */
@ApiModelProperty(value = "证书类型编码")
private String certTypeCode;
/** certTypeName */
@ApiModelProperty(value = "证书类型名称")
private String certTypeName;
/** certCategoryCode */
@ApiModelProperty(value = "证书分类编码")
private String certCategoryCode;
/** certCategoryName */
@ApiModelProperty(value = "证书分类名称")
private String certCategoryName;
/** operationCategoryCode */
@ApiModelProperty(value = "操作类别编码")
private String operationCategoryCode;
/** operationCategoryName */
@ApiModelProperty(value = "操作类别名称")
private String operationCategoryName;
/** certNo */
@ApiModelProperty(value = "证书编号")
private String certNo;
/** issueOrg */
@ApiModelProperty(value = "发证机构")
private String issueOrg;
/** validStartDate */
@ApiModelProperty(value = "有效期开始日期")
private LocalDate validStartDate;
/** validEndDate */
@ApiModelProperty(value = "有效期结束日期")
private LocalDate validEndDate;
/** reviewDate */
@ApiModelProperty(value = "复审日期")
private LocalDate reviewDate;
/** certAttachmentUrl */
@ApiModelProperty(value = "证书附件地址")
private String certAttachmentUrl;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
}

View File

@ -1,5 +1,6 @@
package org.qinan.safetyeval.client.co;
import io.swagger.annotations.ApiModelProperty;
import java.time.LocalDate;
import java.time.LocalDateTime;
import lombok.Data;
@ -12,21 +13,21 @@ import lombok.Data;
@Data
public class OrgPersonnelChangeCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** personnelId */
@ApiModelProperty(value = "人员ID")
private Long personnelId;
/** changeItem */
@ApiModelProperty(value = "变更事项")
private String changeItem;
/** changeTime */
@ApiModelProperty(value = "变更时间")
private LocalDateTime changeTime;
/** operatorName */
@ApiModelProperty(value = "操作人姓名")
private String operatorName;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
}

View File

@ -1,5 +1,6 @@
package org.qinan.safetyeval.client.co;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
@ -10,21 +11,21 @@ import lombok.Data;
@Data
public class OrgPositionCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** deptId */
@ApiModelProperty(value = "部门ID")
private Long deptId;
/** positionName */
@ApiModelProperty(value = "岗位名称")
private String positionName;
/** dutyDesc */
@ApiModelProperty(value = "职责描述")
private String dutyDesc;
/** 备注 */
@ApiModelProperty(value = "备注")
private String remark;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
}

View File

@ -1,5 +1,6 @@
package org.qinan.safetyeval.client.co;
import io.swagger.annotations.ApiModelProperty;
import java.time.LocalDate;
import lombok.Data;
@ -11,42 +12,42 @@ import lombok.Data;
@Data
public class OrgQualificationCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** licenseTypeCode */
@ApiModelProperty(value = "证照类型编码")
private String licenseTypeCode;
/** licenseTypeName */
@ApiModelProperty(value = "证照类型名称")
private String licenseTypeName;
/** certName */
@ApiModelProperty(value = "证书名称")
private String certName;
/** certNo */
@ApiModelProperty(value = "证书编号")
private String certNo;
/** issueDate */
@ApiModelProperty(value = "发证日期")
private LocalDate issueDate;
/** issueOrg */
@ApiModelProperty(value = "发证机构")
private String issueOrg;
/** validStartDate */
@ApiModelProperty(value = "有效期开始日期")
private LocalDate validStartDate;
/** validEndDate */
@ApiModelProperty(value = "有效期结束日期")
private LocalDate validEndDate;
/** certImageUrl */
@ApiModelProperty(value = "证书图片地址")
private String certImageUrl;
/** enableFlag */
@ApiModelProperty(value = "是否启用")
private Integer enableFlag;
/** 备注 */
@ApiModelProperty(value = "备注")
private String remark;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
}

View File

@ -2,6 +2,7 @@ package org.qinan.safetyeval.client.co;
import java.time.LocalDate;
import java.time.LocalDateTime;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
@ -12,45 +13,45 @@ import lombok.Data;
@Data
public class OrgResignApplyCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** personnelId */
@ApiModelProperty(value = "人员ID")
private Long personnelId;
/** applicantName */
@ApiModelProperty(value = "申请人姓名")
private String applicantName;
/** applyTime */
@ApiModelProperty(value = "申请时间")
private LocalDateTime applyTime;
/** resignReason */
@ApiModelProperty(value = "离职原因")
private String resignReason;
/** expectedResignDate */
@ApiModelProperty(value = "预计离职日期")
private LocalDate expectedResignDate;
/** reportFileUrl */
@ApiModelProperty(value = "报告文件地址")
private String reportFileUrl;
/** auditStatusCode */
@ApiModelProperty(value = "审核状态编码")
private Integer auditStatusCode;
/** auditStatusName */
@ApiModelProperty(value = "审核状态名称")
private String auditStatusName;
/** rejectReason */
@ApiModelProperty(value = "打回原因")
private String rejectReason;
/** 申请备注 */
@ApiModelProperty(value = "申请备注")
private String remark;
/** 人员账号(列表展示,非持久化) */
@ApiModelProperty(value = "人员账号(列表展示,非持久化)")
private String account;
/** 部门名称(列表展示,非持久化) */
@ApiModelProperty(value = "部门名称(列表展示,非持久化)")
private String deptName;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
}

View File

@ -1,6 +1,7 @@
package org.qinan.safetyeval.client.co;
import java.math.BigDecimal;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
@ -11,84 +12,84 @@ import lombok.Data;
@Data
public class QualFilingChangeCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** originFilingId */
@ApiModelProperty(value = "原始备案ID")
private Long originFilingId;
/** changeFilingId */
@ApiModelProperty(value = "变更备案ID")
private Long changeFilingId;
/** filingTerritoryCode */
@ApiModelProperty(value = "备案地区编码")
private String filingTerritoryCode;
/** filingTerritoryName */
@ApiModelProperty(value = "备案地区名称")
private String filingTerritoryName;
/** filingUnitName */
@ApiModelProperty(value = "备案单位名称")
private String filingUnitName;
/** filingUnitTypeCode */
@ApiModelProperty(value = "备案单位类型编码")
private String filingUnitTypeCode;
/** filingUnitTypeName */
@ApiModelProperty(value = "备案单位类型名称")
private String filingUnitTypeName;
/** filingNo */
@ApiModelProperty(value = "备案编号")
private String filingNo;
/** businessScope */
@ApiModelProperty(value = "经营范围")
private String businessScope;
/** registerAddress */
@ApiModelProperty(value = "注册地址")
private String registerAddress;
/** officeAddress */
@ApiModelProperty(value = "办公地址")
private String officeAddress;
/** creditCode */
@ApiModelProperty(value = "统一社会信用代码")
private String creditCode;
/** qualCertNo */
@ApiModelProperty(value = "资质证书编号")
private String qualCertNo;
/** legalPersonPhone */
@ApiModelProperty(value = "法定代表人电话")
private String legalPersonPhone;
/** contactPhone */
@ApiModelProperty(value = "联系电话")
private String contactPhone;
/** infoDisclosureUrl */
@ApiModelProperty(value = "信息公开网址")
private String infoDisclosureUrl;
/** fixedAssetAmount */
@ApiModelProperty(value = "固定资产总额")
private Long fixedAssetAmount;
/** archiveRoomArea */
@ApiModelProperty(value = "档案室面积")
private BigDecimal archiveRoomArea;
/** fulltimeEvaluatorCount */
@ApiModelProperty(value = "专职评价人员数量")
private Integer fulltimeEvaluatorCount;
/** registeredEngineerCount */
@ApiModelProperty(value = "注册安全工程师数量")
private Integer registeredEngineerCount;
/** workplaceArea */
@ApiModelProperty(value = "办公场所面积")
private BigDecimal workplaceArea;
/** unitIntro */
@ApiModelProperty(value = "单位简介")
private String unitIntro;
/** attachmentUrl */
@ApiModelProperty(value = "附件地址")
private String attachmentUrl;
/** filingStatusCode */
@ApiModelProperty(value = "备案状态编码")
private Integer filingStatusCode;
/** filingStatusName */
@ApiModelProperty(value = "备案状态名称")
private String filingStatusName;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
}

View File

@ -1,6 +1,7 @@
package org.qinan.safetyeval.client.co;
import lombok.Data;
import io.swagger.annotations.ApiModelProperty;
/**
* COClient Object
@ -10,18 +11,18 @@ import lombok.Data;
@Data
public class QualFilingChangeDetailCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** changeId */
@ApiModelProperty(value = "变更ID")
private Long changeId;
/** changeField */
@ApiModelProperty(value = "变更字段")
private String changeField;
/** changeContent */
@ApiModelProperty(value = "变更内容")
private String changeContent;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
}

View File

@ -1,6 +1,7 @@
package org.qinan.safetyeval.client.co;
import lombok.Data;
import io.swagger.annotations.ApiModelProperty;
import java.util.List;
@ -10,7 +11,9 @@ import java.util.List;
@Data
public class QualFilingChangeHistoryCO {
@ApiModelProperty(value = "变更次数")
private Integer changeCount;
@ApiModelProperty(value = "变更历史记录列表")
private List<QualFilingChangeHistoryItemCO> records;
}

View File

@ -1,6 +1,7 @@
package org.qinan.safetyeval.client.co;
import lombok.Data;
import io.swagger.annotations.ApiModelProperty;
import java.time.LocalDateTime;
@ -10,14 +11,15 @@ import java.time.LocalDateTime;
@Data
public class QualFilingChangeHistoryItemCO {
@ApiModelProperty(value = "主键ID")
private Long id;
/** 变更事项5 步表单名称) */
@ApiModelProperty(value = "变更事项5步表单名称")
private String changeItemName;
/** 变更时间 */
@ApiModelProperty(value = "变更时间")
private LocalDateTime changeTime;
/** 操作人 */
@ApiModelProperty(value = "操作人")
private String operatorName;
}

View File

@ -2,6 +2,7 @@ package org.qinan.safetyeval.client.co;
import java.time.LocalDate;
import lombok.Data;
import io.swagger.annotations.ApiModelProperty;
/**
* COClient Object
@ -11,54 +12,54 @@ import lombok.Data;
@Data
public class QualFilingPersonnelCertCO {
/** 主键ID */
@ApiModelProperty(value = "主键ID")
private Long id;
/** filingId */
@ApiModelProperty(value = "备案ID")
private Long filingId;
/** filingPersonnelId */
@ApiModelProperty(value = "备案人员ID")
private Long filingPersonnelId;
/** certName */
@ApiModelProperty(value = "证书名称")
private String certName;
/** certTypeCode */
@ApiModelProperty(value = "证书类型编码")
private String certTypeCode;
/** certTypeName */
@ApiModelProperty(value = "证书类型名称")
private String certTypeName;
/** certCategoryCode */
@ApiModelProperty(value = "证书分类编码")
private String certCategoryCode;
/** certCategoryName */
@ApiModelProperty(value = "证书分类名称")
private String certCategoryName;
/** operationCategoryCode */
@ApiModelProperty(value = "操作类别编码")
private String operationCategoryCode;
/** operationCategoryName */
@ApiModelProperty(value = "操作类别名称")
private String operationCategoryName;
/** certNo */
@ApiModelProperty(value = "证书编号")
private String certNo;
/** issueOrg */
@ApiModelProperty(value = "发证机构")
private String issueOrg;
/** validStartDate */
@ApiModelProperty(value = "有效期开始日期")
private LocalDate validStartDate;
/** validEndDate */
@ApiModelProperty(value = "有效期结束日期")
private LocalDate validEndDate;
/** reviewDate */
@ApiModelProperty(value = "复审日期")
private LocalDate reviewDate;
/** certAttachmentUrl */
@ApiModelProperty(value = "证书附件地址")
private String certAttachmentUrl;
/** 租户ID */
@ApiModelProperty(value = "租户ID")
private Long tenantId;
}