Log_AgvCharge.cs
809 Bytes
using RCS.Model.Entity.PrimaryKey;
using System.ComponentModel.DataAnnotations.Schema;
namespace RCS.Model.Entity
{
[Table("t_log_agvcharge")]
public class Log_AgvCharge : IdEntity
{
/// <summary>
/// AGV编号
/// </summary>
public string AgvNo { get; set; }
/// <summary>
/// 开始充电电量
/// </summary>
public int StartVoltage { get; set; }
/// <summary>
/// 开始充电时间
/// </summary>
public DateTime? StartTime { get; set; }
/// <summary>
/// 结束充电电量
/// </summary>
public int EndVoltage { get; set; }
/// <summary>
/// 结束充电时间
/// </summary>
public DateTime? EndTime { get; set; }
}
}