优化问卷题目池新增编辑接口

master
xiaochanghai 1 month ago
parent 2cb410610f
commit 7ae5e7afb5
  1. 8
      Model/Tiobon.Web.pdm
  2. 2
      Tiobon.Core.Model/Base/Ghre/Ghre_CertificateDesignItem.Dto.Base.cs
  3. 2
      Tiobon.Core.Model/Models/Ghre/Ghre_CertificateDesignItem.cs
  4. 2
      Tiobon.Core.Model/ViewModels/Extend/CertificateDesignerData.cs

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<?PowerDesigner AppLocale="UTF16" ID="{C294868A-C3F3-41AD-98CC-78B6D4E0CC40}" Label="" LastModificationDate="1747035750" Name="Tiobon" Objects="4292" Symbols="173" Target="Microsoft SQL Server 2008" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.5.0.3982"?>
<?PowerDesigner AppLocale="UTF16" ID="{C294868A-C3F3-41AD-98CC-78B6D4E0CC40}" Label="" LastModificationDate="1747041040" Name="Tiobon" Objects="4292" Symbols="173" Target="Microsoft SQL Server 2008" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.5.0.3982"?>
<!-- do not edit this file -->
<Model xmlns:a="attribute" xmlns:c="collection" xmlns:o="object">
@ -63118,10 +63118,10 @@ Ghra_staff_InsureBase
<a:Code>imageUrl</a:Code>
<a:CreationDate>1747035451</a:CreationDate>
<a:Creator>Administrator</a:Creator>
<a:ModificationDate>1747035680</a:ModificationDate>
<a:ModificationDate>1747041040</a:ModificationDate>
<a:Modifier>Administrator</a:Modifier>
<a:DataType>nvarchar(32)</a:DataType>
<a:Length>32</a:Length>
<a:DataType>nvarchar(128)</a:DataType>
<a:Length>128</a:Length>
</o:Column>
<o:Column Id="o4111">
<a:ObjectID>B5581B87-38C2-4419-98FB-8A1B5AFC56A0</a:ObjectID>

@ -110,7 +110,7 @@ public class Ghre_CertificateDesignItemBase
/// <summary>
/// imageUrl
/// </summary>
[Display(Name = "imageUrl"), Description("imageUrl"), MaxLength(32, ErrorMessage = "imageUrl 不能超过 32 个字符")]
[Display(Name = "imageUrl"), Description("imageUrl"), MaxLength(128, ErrorMessage = "imageUrl 不能超过 128 个字符")]
public string imageUrl { get; set; }
/// <summary>

@ -111,7 +111,7 @@ public class Ghre_CertificateDesignItem : BasePoco
/// <summary>
/// imageUrl
/// </summary>
[Display(Name = "imageUrl"), Description("imageUrl"), MaxLength(32, ErrorMessage = "imageUrl 不能超过 32 个字符")]
[Display(Name = "imageUrl"), Description("imageUrl"), MaxLength(128, ErrorMessage = "imageUrl 不能超过 128 个字符")]
public string imageUrl { get; set; }
/// <summary>

@ -127,7 +127,7 @@ public class CertificateDesignerItem
/// <summary>
/// imageUrl
/// </summary>
[Display(Name = "imageUrl"), Description("imageUrl"), MaxLength(32, ErrorMessage = "imageUrl 不能超过 32 个字符")]
[Display(Name = "imageUrl"), Description("imageUrl"), MaxLength(128, ErrorMessage = "imageUrl 不能超过 128 个字符")]
public string imageUrl { get; set; }
/// <summary>

Loading…
Cancel
Save