using SqlSugar; namespace EntrustSettle.Model.Models { /// ///附件表 /// [SugarTable("annex")] public class Annex : BaseEntity { /// /// 附件原始名称 /// public string Name { get; set; } /// /// 附件保存路径 /// public string Path { get; set; } /// /// 附件类型 1:原始附件 2:反馈附件 3:账单 4:发票 /// public byte? Type { get; set; } } }