简历信息栏位 新增是否课查询条件栏位

master
xiaochanghai 7 months ago
parent b19c9a3d01
commit 4688e4e20d
  1. 1724
      Model/Tiobon.Web.pdm
  2. 47
      Tiobon.Core.Model/Base/Ghrh/Ghrh_ResumeInfoColumn.Dto.Base.cs
  3. 31
      Tiobon.Core.Model/Models/Ghrh/Ghrh_ResumeInfoColumn.cs

File diff suppressed because it is too large Load Diff

@ -6,7 +6,7 @@
* *
* Ver * Ver
* *
*V0.01 2024/10/14 13:31:21 SimonHsiao *V0.01 2024/12/2 14:30:17 SimonHsiao
* *
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
* *
@ -14,17 +14,14 @@
* SimonHsiao * SimonHsiao
* *
*/ */
using System.ComponentModel; namespace Tiobon.Core.Model.Models;
using System.ComponentModel.DataAnnotations;
namespace Tiobon.Core.Model.Models
{
/// <summary> /// <summary>
/// 简历信息栏位 (Dto.Base) /// 简历信息栏位 (Dto.Base)
/// </summary> /// </summary>
public class Ghrh_ResumeInfoColumnBase public class Ghrh_ResumeInfoColumnBase
{ {
/// <summary> /// <summary>
/// 简历组别ID /// 简历组别ID
@ -163,18 +160,6 @@ namespace Tiobon.Core.Model.Models
/// </summary> /// </summary>
public int? DataSourceID { get; set; } public int? DataSourceID { get; set; }
/// <summary>
/// 关联表名
/// </summary>
[Display(Name = "MapTableName"), Description("关联表名"), MaxLength(100, ErrorMessage = "关联表名 不能超过 100 个字符")]
public string MapTableName { get; set; }
/// <summary>
/// 关联栏位
/// </summary>
[Display(Name = "MapColumnName"), Description("关联栏位"), MaxLength(100, ErrorMessage = "关联栏位 不能超过 100 个字符")]
public string MapColumnName { get; set; }
/// <summary> /// <summary>
/// 排序号 /// 排序号
/// </summary> /// </summary>
@ -260,5 +245,21 @@ namespace Tiobon.Core.Model.Models
/// 预留字段12 /// 预留字段12
/// </summary> /// </summary>
public int? ReverseI2 { get; set; } public int? ReverseI2 { get; set; }
}
/// <summary>
/// 关联表名
/// </summary>
[Display(Name = "MapTableName"), Description("关联表名"), MaxLength(100, ErrorMessage = "关联表名 不能超过 100 个字符")]
public string MapTableName { get; set; }
/// <summary>
/// 关联栏位
/// </summary>
[Display(Name = "MapColumnName"), Description("关联栏位"), MaxLength(100, ErrorMessage = "关联栏位 不能超过 100 个字符")]
public string MapColumnName { get; set; }
/// <summary>
/// 查询条件
/// </summary>
public int? QueryCondition { get; set; }
} }

@ -6,7 +6,7 @@
* *
* Ver * Ver
* *
*V0.01 2024/10/14 13:31:21 SimonHsiao *V0.01 2024/12/2 14:30:17 SimonHsiao
* *
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
* *
@ -161,18 +161,6 @@ public class Ghrh_ResumeInfoColumn : BasePoco
/// </summary> /// </summary>
public int? DataSourceID { get; set; } public int? DataSourceID { get; set; }
/// <summary>
/// 关联表名
/// </summary>
[Display(Name = "MapTableName"), Description("关联表名"), MaxLength(100, ErrorMessage = "关联表名 不能超过 100 个字符")]
public string MapTableName { get; set; }
/// <summary>
/// 关联栏位
/// </summary>
[Display(Name = "MapColumnName"), Description("关联栏位"), MaxLength(100, ErrorMessage = "关联栏位 不能超过 100 个字符")]
public string MapColumnName { get; set; }
/// <summary> /// <summary>
/// 排序号 /// 排序号
/// </summary> /// </summary>
@ -258,4 +246,21 @@ public class Ghrh_ResumeInfoColumn : BasePoco
/// 预留字段12 /// 预留字段12
/// </summary> /// </summary>
public int? ReverseI2 { get; set; } public int? ReverseI2 { get; set; }
/// <summary>
/// 关联表名
/// </summary>
[Display(Name = "MapTableName"), Description("关联表名"), MaxLength(100, ErrorMessage = "关联表名 不能超过 100 个字符")]
public string MapTableName { get; set; }
/// <summary>
/// 关联栏位
/// </summary>
[Display(Name = "MapColumnName"), Description("关联栏位"), MaxLength(100, ErrorMessage = "关联栏位 不能超过 100 个字符")]
public string MapColumnName { get; set; }
/// <summary>
/// 查询条件
/// </summary>
public int? QueryCondition { get; set; }
} }

Loading…
Cancel
Save