2025-08-15 16:34:31 +08:00

59 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace SWS.CAD.Models
{
public class ec_template_file
{
#region
/// <summary>
/// 样板文件ID
/// </summary>
/// <returns></returns>
public string TemplateFileID { get; set; }
/// <summary>
/// 样板目录ID<see cref="ec_template_catalogueEntity.TemplateCatalogueID"/>
/// </summary>
/// <returns></returns>
public string TemplateCatalogueID { get; set; } = "";
/// <summary>
/// 样板文件名称
/// </summary>
/// <returns></returns>
public string TemplateFileName { get; set; } = "";
/// <summary>
/// 备注
/// </summary>
/// <returns></returns>
public string Remark { get; set; } = "";
/// <summary>
/// 附件文件夹ID
/// </summary>
/// <returns></returns>
public string FolderId { get; set; } = "";
/// <summary>
/// 创建人
/// </summary>
/// <returns></returns>
public string CreateUserID { get; set; }
/// <summary>
/// 创建时间
/// </summary>
/// <returns></returns>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 更新人
/// </summary>
/// <returns></returns>
public string UpdateUserID { get; set; }
/// <summary>
/// 更新时间
/// </summary>
/// <returns></returns>
public DateTime? UpdateTime { get; set; }
#endregion
}
}