|
|
@ -6,7 +6,7 @@ |
|
|
|
* |
|
|
|
* |
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
* ─────────────────────────────────── |
|
|
|
* ─────────────────────────────────── |
|
|
|
*V0.01 2025/5/23 10:30:26 SimonHsiao 初版 |
|
|
|
*V0.01 2025/5/27 15:17:59 SimonHsiao 初版 |
|
|
|
* |
|
|
|
* |
|
|
|
* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. |
|
|
|
* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. |
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
*┌──────────────────────────────────┐ |
|
|
@ -292,6 +292,11 @@ public class Ghre_TrainFeeApplyOrder_BoltoneBase |
|
|
|
[Display(Name = "PlanId"), Description("计划ID"), MaxLength(2000, ErrorMessage = "计划ID 不能超过 2000 个字符")] |
|
|
|
[Display(Name = "PlanId"), Description("计划ID"), MaxLength(2000, ErrorMessage = "计划ID 不能超过 2000 个字符")] |
|
|
|
public string PlanId { get; set; } |
|
|
|
public string PlanId { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 讲师名 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[Display(Name = "TeacherName"), Description("讲师名"), MaxLength(32, ErrorMessage = "讲师名 不能超过 32 个字符")] |
|
|
|
|
|
|
|
public string TeacherName { get; set; } |
|
|
|
public List<long> PlanIds { get; set; } = new List<long>(); |
|
|
|
public List<long> PlanIds { get; set; } = new List<long>(); |
|
|
|
public List<Ghre_Attachment1> Attachments { get; set; } = new List<Ghre_Attachment1>(); |
|
|
|
public List<Ghre_Attachment1> Attachments { get; set; } = new List<Ghre_Attachment1>(); |
|
|
|
public List<Ghre_TrainFeeApplyDetail_Boltone> Details { get; set; } = new List<Ghre_TrainFeeApplyDetail_Boltone>(); |
|
|
|
public List<Ghre_TrainFeeApplyDetail_Boltone> Details { get; set; } = new List<Ghre_TrainFeeApplyDetail_Boltone>(); |
|
|
|