using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text; namespace Domain.Models.Units { [Table("unit_category")] public class UnitCategory { public int Id { get; set; } /// /// 微擎小程序/公众号ID /// public int Uniacid { get; set; } /// /// 团体ID /// [Column("group_id")] public int GroupId { get; set; } /// /// 排序 /// public Int32 Sort { get; set; } /// /// 类别名 /// public string Name { get; set; } /// /// 类别图标 /// public string Icon { get; set; } /// /// 操作员ID,关联表gate_member /// [Column("operator_id")] public int OperatorId { get; set; } /// /// 更新时间 /// [Column("upt_time")] public DateTime UpdateTime { get; set; } } }