/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。 * Ghrh_OfferApplyOrder.cs * *功 能: N / A * 类 名: Ghrh_OfferApplyOrder * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── *V0.01 2024/12/5 11:57:37 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ *└──────────────────────────────────┘ */ namespace Tiobon.Core.Model.Models; /// /// 录用审批单(Dto.View1) /// public class Ghrh_OfferApplyOrderDto : Ghrh_OfferApplyOrder { /// /// 创建信息 /// public string CreateDataInfo { get; set; } /// /// 修改信息 /// public string UpdateDataInfo { get; set; } /// /// 部门 /// public string DeptName { get; set; } /// /// 岗位 /// public string TitleName { get; set; } /// /// 招聘渠道 /// public string ChannelLabel { get; set; } /// /// 入职日期 /// public string InDate1 { get; set; } /// /// 员工类别 /// public string StaffTypeLabel { get; set; } /// /// 职称 /// public string GradeName { get; set; } /// /// 职等 /// public string JobName { get; set; } /// /// 审批状态 /// public string WorkStateLabel { get; set; } public string ReportName { get; set; } public string ApplicantName { get; set; } /// /// 厂区 /// public string ZoneName { get; set; } }