You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.9 KiB
81 lines
1.9 KiB
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Znyc.Admin.Commons.Entitys;
|
|
|
|
namespace Znyc.Admin.Security.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 车辆换装记录表
|
|
/// </summary>
|
|
[Table("dc_vehicle_change")]
|
|
[Comment("车辆换装记录表")]
|
|
public class VehicleChange : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 所属公司
|
|
/// </summary>
|
|
[Comment("所属公司")]
|
|
public long CompanyId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车辆Id
|
|
/// </summary>
|
|
[Comment("车辆Id")]
|
|
public long VehicleId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物联卡类型
|
|
/// </summary>
|
|
[Comment("物联卡类型")]
|
|
public long CardType { get; set; }
|
|
|
|
/// <summary>
|
|
/// SIM卡号
|
|
/// </summary>
|
|
[Comment("SIM卡号")]
|
|
public string SimNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备类型
|
|
/// </summary>
|
|
[Comment("设备类型")]
|
|
public long TerminalType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备号
|
|
/// </summary>
|
|
[Comment("设备号")]
|
|
public string TerminalNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// Imei号
|
|
/// </summary>
|
|
[Comment("Imei号")]
|
|
public string ImeiNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// GPS协议号
|
|
/// </summary>
|
|
[Comment("GPS协议号")]
|
|
public string AgreementNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 换卡日期
|
|
/// </summary>
|
|
[Comment("换卡日期")]
|
|
public DateTime ChangeTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修改日期
|
|
/// </summary>
|
|
[Comment("修改日期")]
|
|
public DateTime UpdateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[Comment("备注")]
|
|
public string Note { get; set; }
|
|
}
|
|
}
|