using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Cloudcar.Admin.Commons.Entitys; namespace Znyc.Cloudcar.Admin.Security.Entitys { /// /// 设备表 /// [Table("equipment")] public class EquipmentEntity : BaseEntity { /// /// 用户Id /// public long UserId { get; set; } /// /// 标题 /// 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 ReprintVolume { get; set; } /// /// 设备型号 /// public string EquipmentModel { get; set; } /// /// 设备吨位 /// public int EquipmentTonnage { get; set; } /// /// 斗容 /// public int Capacity { get; set; } /// /// 设备介绍 /// public string Introduction { get; set; } /// /// 出厂日期 /// public int AppearanceDate { get; set; } /// /// 出售价格 /// public decimal SellingPrice { get; set; } /// /// 车辆位置 /// public string AutomobileLocation { get; set; } /// /// 联系人 /// public string Contact { get; set; } /// /// 联系人电话 /// 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 BoomLength { get; set; } /// /// /// public int PromoteType { get; set; } } }