using FreeSql.DataAnnotations; namespace Znyc.CloudCar.Model.Entities { /// /// 设备信息表 /// [Table(Name = "equipment")] public class EquipmentEntity : EntityBase { /// /// 用户Id /// public long UserId { get; set; } /// /// 标题 /// [Column(StringLength = 25)] public string Title { get; set; } /// /// 设备编号 /// public long EquipmentNumber { get; set; } /// /// 设备类型 /// public long EquipmentType { get; set; } /// /// 设备品牌 /// public long EquipmentBrand { get; set; } /// /// 汽车底盘 /// public long AutomobileChassis { get; set; } /// /// 臂架长度 /// public long BoomLength { get; set; } /// /// 装载方量 /// public long ReprintVolume { get; set; } /// /// 最大输送量 /// public long MaxTransportation { get; set; } /// /// 设备型号 /// [Column(StringLength = 15)] public string EquipmentModel { get; set; } /// /// 设备吨位 /// public int EquipmentTonnage { get; set; } /// /// 斗容 /// public int Capacity { get; set; } /// /// 功率 /// public string Power { get; set; } /// /// 设备介绍 /// [Column(StringLength = 500)] public string Introduction { get; set; } /// /// 出厂年限 /// public int AppearanceDate { get; set; } /// /// 出售价格 /// public decimal SellingPrice { get; set; } /// /// 车辆位置 /// [Column(StringLength = 35)] public string AutomobileLocation { get; set; } /// /// 联系人 /// [Column(StringLength = 8)] public string Contact { get; set; } /// /// 联系人电话 /// [Column(StringLength = 11)] public string ContactPhone { get; set; } /// /// 状态,10=出售中,11=审核中,30=未通过,40=已成交,99=未通过 /// public int State { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 置顶到期时间 /// public DateTime TopExpireDate { get; set; } /// /// 刷新时间 /// public DateTime RefreshDate { get; set; } /// /// 是否公开 /// public bool IsPublic { get; set; } /// /// 浏览量 /// public int PageView { get; set; } /// /// 省 /// public long ProvinceId { get; set; } /// /// 省 /// public long CityId { get; set; } } }