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

master
xiaochanghai 7 months ago
parent b19c9a3d01
commit 4688e4e20d
  1. 1724
      Model/Tiobon.Web.pdm
  2. 37
      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
*
*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.
*
@ -14,11 +14,8 @@
* SimonHsiao
*
*/
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Tiobon.Core.Model.Models;
namespace Tiobon.Core.Model.Models
{
/// <summary>
/// 简历信息栏位 (Dto.Base)
@ -163,18 +160,6 @@ namespace Tiobon.Core.Model.Models
/// </summary>
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>
@ -260,5 +245,21 @@ namespace Tiobon.Core.Model.Models
/// 预留字段12
/// </summary>
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
*
*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.
*
@ -161,18 +161,6 @@ public class Ghrh_ResumeInfoColumn : BasePoco
/// </summary>
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>
@ -258,4 +246,21 @@ public class Ghrh_ResumeInfoColumn : BasePoco
/// 预留字段12
/// </summary>
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