You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/Edit/Ghrh/Ghrh_HumanRequest.Dto.EditI...

41 lines
1.4 KiB

/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。
* Ghrh_HumanRequest.cs
*
*功 能: N / A
* 类 名: Ghrh_HumanRequest
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
*V0.01 2024/11/1 10:14:40 SimonHsiao 初版
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. 
*│ 作者:SimonHsiao │
*└──────────────────────────────────┘
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 人力需求维护 (Dto.EditInput)
/// </summary>
public class EditGhrh_HumanRequestInput : Ghrh_HumanRequestBase
{
/// <summary>
/// 素质要求
/// </summary>
public List<string> Quality { get; set; }
/// <summary>
/// 经验要求
/// </summary>
public List<Ghrh_HumanRequestExperience> Experience { get; set; }
}
public class Ghrh_HumanRequestExperience
{
public string value { get; set; }
public string text { get; set; }
}