业务逻辑修改以及完善

This commit is contained in:
2026-01-18 22:07:06 +08:00
parent 7240cb74ad
commit 62de85c6e0
10 changed files with 194 additions and 2 deletions

View File

@@ -57,4 +57,7 @@ public class HotakeComplianceInfo extends BaseEntity
@Excel(name = "状态", readConverterExp = "v=erified,验=证pending,待=验证")
private String status;
@ApiModelProperty("数据类型identity:身份验证 backgroundCheck:背景调查 driverLicense:驾照 legalEligibility:法律资格 other:其他)")
private String dataType;
}

View File

@@ -117,6 +117,10 @@ public class HotakeRolesApplyInfo extends BaseEntity
@Excel(name = "AI评分百分比")
private BigDecimal aiMatchScorePercentage;
/** 申请状态pending:进行中complete已完成Canceled取消 */
@ApiModelProperty("申请状态pending:进行中complete已完成Canceled取消")
private String status;
@ApiModelProperty("岗位信息")
private HotakeRolesInfo rolesInfo;

View File

@@ -6,6 +6,8 @@ import io.swagger.annotations.ApiModelProperty;
import com.vetti.common.annotation.Excel;
import com.vetti.common.core.domain.BaseEntity;
import java.util.List;
/**
* 岗位申请操作信息对象 hotake_roles_apply_oper_record
*
@@ -37,4 +39,7 @@ public class HotakeRolesApplyOperRecord extends BaseEntity
@Excel(name = "当前阶段")
private String applyStage;
@ApiModelProperty("岗位申请Id数据集合")
private List<Long> applyIds;
}