namespace Entity.Dto.Resp; /// /// 设备信息resp /// public class EquipInfoResp { /// /// Desc:id /// Default: /// Nullable:False /// public int Id { get; set; } /// /// Desc:设备编码 /// Default: /// Nullable:True /// public string Code { get; set; } /// /// Desc:设备名称 /// Default: /// Nullable:True /// public string Name { get; set; } /// /// Desc:设备类型编码 0交流,1直流 /// Default: /// Nullable:True /// public int? TypeCode { get; set; } /// /// Desc:设备状态;0-未知;1-正常;2-报警;3-停用 /// Default: /// Nullable:True /// public int? Status { get; set; } /// /// Desc:0-手动;1-自动充电 /// Default: /// Nullable:True /// public int? AutoCharge { get; set; } /// /// 充电功率 /// public float? ChargePower { get; set; } /// /// Desc:连接地址 /// Default: /// Nullable:True /// public string NetAddr { get; set; } /// /// Desc:连接端口 /// Default: /// Nullable:True /// public string NetPort { get; set; } /// /// Desc:目的地址;(十六进制,如0a,02,03,04) /// Default: /// Nullable:True /// public string DestAddr { get; set; } }