using Datory; using Datory.Annotations; namespace GxPress.Entity.WorkMeeting { /// /// 会议房间 /// [DataTable("tede_meeting_room")] public class MeetingRoom : Datory.Entity { /// /// 名称 /// [DataColumn] public string Name { get; set; } /// /// 会议地址Id /// [DataColumn] public int LocationId { get; set; } /// /// 启用/禁用 /// [DataColumn] public bool Disabled { get; set; } /// /// 座位数 /// [DataColumn] public int Capacity{ get; set; } /// /// 图片url /// [DataColumn] public string ImageUrl { get; set; } /// /// 描述 /// [DataColumn] public string Description { get; set; } /// /// 排序 /// [DataColumn] public int Taxis { get; set; } /// /// 地址 /// public string Address { get; set; } } }