using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.Repository.Domain { [SugarTable("excel_import")] public class ExcelImport { #region 实体成员 /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 关联模块Id /// public string ModuleId { get; set; } /// /// 关联按钮Id /// public string ModuleBtnId { get; set; } /// /// 按钮名称 /// public string BtnName { get; set; } /// /// 导入数据库ID /// public string DbId { get; set; } /// /// 导入数据库表 /// public string DbTable { get; set; } /// /// 错误处理机制0终止,1跳过 /// public int? ErrorType { get; set; } /// /// 是否有效0暂停,1启用 /// public int? EnabledMark { get; set; } /// /// 备注 /// public string Description { get; set; } /// /// 创建时间 /// public DateTime? CreateDate { get; set; } /// /// 创建人Id /// public string CreateUserId { get; set; } /// /// 创建人名字 /// public string CreateUserName { get; set; } /// /// 修改时间 /// public DateTime? ModifyDate { get; set; } /// /// 修改人Id /// public string ModifyUserId { get; set; } /// /// 修改人名称 /// public string ModifyUserName { get; set; } #endregion } }