using Mapster; namespace Model { /// /// api接口分组 api_group /// [SugarTable("api_group", "api接口分组")] [Tenant("0")] public class ApiGroup { /// /// 名称 /// [SugarColumn(ColumnDescription = "名称", Length = 50, ColumnName = "group_name")] public string groupName { get; set; } /// /// 说明 /// [SugarColumn(ColumnDescription = "说明", Length = 200, ColumnName = "group_remark")] public string groupRemark { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "版本号", Length = 20, ColumnName = "group_version")] public string groupVersion { get; set; } /// /// ID /// [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")] public int id { get; set; } /// /// 状态 /// [SugarColumn(ColumnDescription = "状态", ColumnName = "status")] public int status { get; set; } /// /// 排序 /// [SugarColumn(ColumnDescription = "排序", ColumnName = "sort")] public int sort { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")] public int version { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_date")] public DateTime? createDate { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_date")] public DateTime? updateDate { get; set; } /// /// 类型 /// [SugarColumn(ColumnDescription = "类型", ColumnName = "group_kind")] public int groupKind { get; set; } } }