|
|
|
@ -6,14 +6,14 @@ |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2024/8/10 18:11:53 SimonHsiao 初版 |
|
|
|
|
*V0.01 2024/8/21 13:41:22 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ |
|
|
|
|
*│ 作者:SimonHsiao │ |
|
|
|
|
*└──────────────────────────────────┘ |
|
|
|
|
*/ |
|
|
|
|
*/ |
|
|
|
|
using System.ComponentModel; |
|
|
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
|
using SqlSugar; |
|
|
|
@ -100,7 +100,7 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// <summary> |
|
|
|
|
/// 结果 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Result"), Description("结果"), MaxLength(2000, ErrorMessage = "结果 不能超过 256 个字符")] |
|
|
|
|
[Display(Name = "Result"), Description("结果"), MaxLength(2000, ErrorMessage = "结果 不能超过 2000 个字符")] |
|
|
|
|
public string Result { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
@ -177,5 +177,17 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// 预留字段12 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI2 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 规则编号 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RuleNo"), Description("规则编号"), MaxLength(32, ErrorMessage = "规则编号 不能超过 32 个字符"), EntityColumn(Unique = true)] |
|
|
|
|
public string RuleNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 规则名称 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RuleName"), Description("规则名称"), MaxLength(32, ErrorMessage = "规则名称 不能超过 32 个字符")] |
|
|
|
|
public string RuleName { get; set; } |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|