namespace ZR.Model.Business { /// /// 框-信息 /// [SugarTable("odf_frames")] public class OdfFrames { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// ODF机架ID /// public int RackId { get; set; } /// /// 名称 /// public string PortsName { get; set; } /// /// 所属部门 /// public long? DeptId { get; set; } /// /// 序号 /// public int? SequenceNumber { get; set; } /// /// 端口数量 /// public int? PortsCount { get; set; } /// /// 列数量 /// public int? PortsCol { get; set; } /// /// 行数量 /// public int? PortsRow { get; set; } /// /// 创建时间 /// public DateTime? CreatedAt { get; set; } /// /// 修改时间 /// public DateTime? UpdateAt { get; set; } } }