| | |
| | | ...DutiableFileBusinessTypeEnumText, |
| | | }; |
| | | |
| | | export enum AuthType { |
| | | export enum EnterpriseType { |
| | | /** |
| | | * 人资公司 |
| | | * 人力资源公司 |
| | | */ |
| | | HumanResourceCompany = 10, |
| | | HREnterprise = 10, |
| | | /** |
| | | * 行业配套服务公司 |
| | | * 甲方企业 |
| | | */ |
| | | IndustryMating = 20, |
| | | FirstPartyCompany = 20, |
| | | /** |
| | | * 用工单位 |
| | | * 行业配套 |
| | | */ |
| | | Employers = 30, |
| | | IndustryMating = 30, |
| | | /** |
| | | * 行业机构 |
| | | */ |
| | | IndustryBody = 40, |
| | | } |
| | | |
| | | export const AuthTypeText = { |
| | | [AuthType.HumanResourceCompany]: '人资公司', |
| | | [AuthType.IndustryMating]: '配套服务商', |
| | | [AuthType.Employers]: '甲方单位', |
| | | [AuthType.IndustryBody]: '行业机构', |
| | | export const EnterpriseTypeText = { |
| | | [EnterpriseType.HREnterprise]: '人资公司', |
| | | [EnterpriseType.FirstPartyCompany]: '甲方企业', |
| | | [EnterpriseType.IndustryMating]: '行业配套', |
| | | [EnterpriseType.IndustryBody]: '行业机构', |
| | | }; |