添加ocr识别简历

This commit is contained in:
sh
2026-02-04 10:55:14 +08:00
parent 9d0ff4cbf7
commit f7f31ae0fa
10 changed files with 707 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
package com.ruoyi.common.enums;
/**
* 数据脱敏类型枚举
*/
public enum SensitiveType {
/**
* 默认(缺省值脱敏)
*/
DEFAULT,
/**
* 中文名
*/
CHINESE_NAME,
/**
* 英文名
*/
ENGLISH_NAME,
/**
* 身份证号
*/
ID_CARD,
/**
* 手机号
*/
PHONE,
/**
* 邮箱
*/
EMAIL,
/**
* 银行卡
*/
BANK_CARD,
/**
* 户籍所在地活现居住地
*/
LIVE_ADDRESS,
/**
* 自定义
*/
CUSTOM
}