|
|
|
@ -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; } |
|
|
|
|
} |
|
|
|
|