namespace DOAN.Model.Business { /// /// /// [SugarTable("base_group")] public class BaseGroup { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 组名 /// [SugarColumn(ColumnName = "group_name")] public string GroupName { get; set; } /// /// 类型 1 白班 2夜班 /// [SugarColumn(ColumnName = "group_type")] public int? GroupType { get; set; } /// /// 班组长 /// [SugarColumn(ColumnName = "group_leader")] public string GroupLeader { get; set; } /// /// 0 停用 1启动 /// public int? Status { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// CreatedTime /// [SugarColumn(ColumnName = "created_time")] public DateTime? CreatedTime { get; set; } /// /// CreatedBy /// [SugarColumn(ColumnName = "created_by")] public string CreatedBy { get; set; } /// /// UpdatedTime /// [SugarColumn(ColumnName = "updated_time")] public DateTime? UpdatedTime { get; set; } /// /// UpdatedBy /// [SugarColumn(ColumnName = "updated_by")] public string UpdatedBy { get; set; } } }