/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。 * Ghrh_Resume.cs * *功 能: N / A * 类 名: Ghrh_Resume * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── *V0.01 2024/10/21 10:13:55 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ *└──────────────────────────────────┘ */ namespace Tiobon.Core.Model.Models; /// /// 个人简历(Dto.View1) /// public class Ghrh_ResumeDto : Ghrh_Resume { /// /// 创建信息 /// public string CreateDataInfo { get; set; } /// /// 修改信息 /// public string UpdateDataInfo { get; set; } public string TitleName { get; set; } public string TitleLabel { get; set; } public string GenderLabel { get; set; } public string EducationLabel { get; set; } public string NationLabel { get; set; } public string MaritalStatusLabel { get; set; } public string PoliticStatusLabel { get; set; } public string CertificateTypeLabel { get; set; } public string RegisteredTypeLabel { get; set; } public string UrgentRelationLabel { get; set; } public List TagList { get; set; } public List EduBG { get; set; } public List WorkExp { get; set; } }