using Microsoft.EntityFrameworkCore; using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Admin.Commons.Entitys; namespace Znyc.Admin.Security.Entitys { /// /// 车辆换装记录表 /// [Table("dc_vehicle_change")] [Comment("车辆换装记录表")] public class VehicleChange : BaseEntity { /// /// 所属公司 /// [Comment("所属公司")] public long CompanyId { get; set; } /// /// 车辆Id /// [Comment("车辆Id")] public long VehicleId { get; set; } /// /// 物联卡类型 /// [Comment("物联卡类型")] public long CardType { get; set; } /// /// SIM卡号 /// [Comment("SIM卡号")] public string SimNo { get; set; } /// /// 设备类型 /// [Comment("设备类型")] public long TerminalType { get; set; } /// /// 设备号 /// [Comment("设备号")] public string TerminalNo { get; set; } /// /// Imei号 /// [Comment("Imei号")] public string ImeiNo { get; set; } /// /// GPS协议号 /// [Comment("GPS协议号")] public string AgreementNo { get; set; } /// /// 换卡日期 /// [Comment("换卡日期")] public DateTime ChangeTime { get; set; } /// /// 修改日期 /// [Comment("修改日期")] public DateTime UpdateTime { get; set; } /// /// 备注 /// [Comment("备注")] public string Note { get; set; } } }