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/View/Ghrh/Ghrh_ResumeInfoGroup.Dto.Vi...

44 lines
1.6 KiB

/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。
* Ghrh_ResumeInfoGroup.cs
*
*功 能: N / A
* 类 名: Ghrh_ResumeInfoGroup
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
*V0.01 2024/10/11 15:09:37 SimonHsiao 初版
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. 
*│ 作者:SimonHsiao │
*└──────────────────────────────────┘
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 简历组别(Dto.View1)
/// </summary>
public class Ghrh_ResumeInfoGroupDto : Ghrh_ResumeInfoGroup
{
/// <summary>
/// 创建信息
/// </summary>
public string CreateDataInfo { get; set; }
/// <summary>
/// 修改信息
/// </summary>
public string UpdateDataInfo { get; set; }
public long ResumeInfoGroupID { get; set; }
public string ResumeInfoGroupName { get; set; }
public int editable { get; set; }
public int removable { get; set; }
public int canDrag { get; set; }
public int canHide { get; set; }
public int configurable { get; set; }
public int isDisplay { get; set; }
public string GroupColumn1 { get; set; }
public List<Dictionary<string, object>> GroupColumn { get; set; }
}