| | |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using SqlSugar; |
| | | using WIDESEAWCS_Core.DB.Models; |
| | | using WIDESEAWCS_Core.Tenants; |
| | | |
| | | namespace WIDESEAWCS_Model.Models |
| | | { |
| | | [SugarTable("Dt_Template", "模æ¿è¡¨"), MultiTenant] |
| | | public class Dt_Template |
| | | public class Dt_Template : BaseEntity |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int TemplateID { get; set; } |
| | |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public string fuZhu_Dg { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public DateTime CreateDate { get; set; } |
| | | |
| | | |
| | | } |
| | | } |