namespace ZR.Model.Business { /// /// 光缆 /// [SugarTable("odf_cables")] public class OdfCables { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 光缆名称 /// public string CableName { get; set; } /// /// 所属公司/部门ID /// public long DeptId { get; set; } /// /// 部门名称(冗余) /// public string DeptName { get; set; } /// /// 创建时间 /// public DateTime? CreatedAt { get; set; } /// /// 更新时间 /// public DateTime? UpdatedAt { get; set; } } }