|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2025/5/14 17:47:56 SimonHsiao 初版 |
|
|
|
|
*V0.01 2025/5/15 16:14:10 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
@ -94,7 +94,8 @@ public class Ghre_CertificateDesignItem : BasePoco |
|
|
|
|
/// <summary> |
|
|
|
|
/// height |
|
|
|
|
/// </summary> |
|
|
|
|
public int? height { get; set; } |
|
|
|
|
[Display(Name = "height"), Description("height"), Column(TypeName = "decimal(20,2)")] |
|
|
|
|
public decimal? height { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// id1 |
|
|
|
@ -117,6 +118,7 @@ public class Ghre_CertificateDesignItem : BasePoco |
|
|
|
|
/// <summary> |
|
|
|
|
/// left |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "left"), Description("left"), Column(TypeName = "decimal(20,2)")] |
|
|
|
|
public decimal? left { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
@ -138,6 +140,7 @@ public class Ghre_CertificateDesignItem : BasePoco |
|
|
|
|
/// <summary> |
|
|
|
|
/// top |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "top"), Description("top"), Column(TypeName = "decimal(20,2)")] |
|
|
|
|
public decimal? top { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
@ -149,7 +152,8 @@ public class Ghre_CertificateDesignItem : BasePoco |
|
|
|
|
/// <summary> |
|
|
|
|
/// width |
|
|
|
|
/// </summary> |
|
|
|
|
public int? width { get; set; } |
|
|
|
|
[Display(Name = "width"), Description("width"), Column(TypeName = "decimal(20,2)")] |
|
|
|
|
public decimal? width { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// zIndex |
|
|
|
@ -248,4 +252,10 @@ public class Ghre_CertificateDesignItem : BasePoco |
|
|
|
|
/// 预留字段12 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI2 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// align |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "align"), Description("align"), MaxLength(32, ErrorMessage = "align 不能超过 32 个字符")] |
|
|
|
|
public string align { get; set; } |
|
|
|
|
} |
|
|
|
|