using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace cylsg.Model.ECTEModel { /// /// 办公系统厂商员工角色表 /// [SugarTable("OA_FirmRole")] [Tenant("ECTESTOADB")] public class OA_FirmRole { /// /// 信息编号 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Keyid { get; set; } /// /// 所属厂商编号 /// [SugarColumn(IsNullable = false)] public Guid FirmId { get; set; } /// /// 角色名称 /// [SugarColumn(IsNullable = false, ColumnDataType = "varchar(20)")] public string RoleName { get; set; } /// /// 是否有效 /// [SugarColumn(IsNullable = false)] public bool IsUsed { get; set; } /// /// 最后修改时间 /// [SugarColumn(IsNullable = false)] public DateTime LastUpdateTime { get; set; } /// /// 操作人 /// [SugarColumn(IsNullable = false, ColumnDataType = "varchar(20)")] public string Operator { get; set; } /// /// 备注 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")] public string Remark { get; set; } } }