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.
|
namespace Entity.Api.Resp;
|
|
|
|
public class EmeterResp
|
|
{
|
|
/// <summary>
|
|
/// 充电机电表编码 (充电机Sn)
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电表当前读数
|
|
/// </summary>
|
|
public float Value { get; set; }
|
|
|
|
public DateTime UploadTime { get; set; }
|
|
public string Hour { get; set; }
|
|
} |