/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。 * Ghre_SchoolAttachment.cs * *功 能: N / A * 类 名: Ghre_SchoolAttachment * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── *V0.01 2024/6/26 14:20:57 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ *└──────────────────────────────────┘ */ namespace Tiobon.Core.Model.Models; /// /// 培训机构附件(Dto.View) /// public class Ghre_SchoolAttachmentDto : Ghre_SchoolAttachment { /// /// 创建信息 /// public string CreateDataInfo { get; set; } /// /// 修改信息 /// public string UpdateDataInfo { get; set; } public List Attachments { get; set; } = new List(); }