using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entity.Api.Resp { /// /// 站点基础信息 /// public class StationBaseInfoResp { /// /// 换电站编码 /// public string StationNo { get; set; } /// /// 换电站名称 /// public string StationName { get; set; } /// /// 站类型 /// public string StationType { get; set; } /// /// 换电站识别号 /// public string StationSn { get; set; } /// /// 地理位置 /// public string? StationLocation { get; set; } /// /// 经度 /// public string? Longitude { get; set; } /// /// 纬度 /// public string? Latitude { get; set; } /// /// 区域编号 /// public string? AreaCode { get; set; } /// /// 区域名称 /// public string? AreaName { get; set; } /// /// 营运开始时间 /// public string Operatetionstime { get; set; } /// /// 营运结束时间 /// public string Operatetionetime { get; set; } /// /// 服务状态 /// public sbyte Sevstatus { get; set; } /// /// 换电站状态: 1:营运中 2:歇业中 3:设备维护状态 4:暂停营业 /// public int StationStatus { get; set; } /// /// 投放时间 /// public string? LaunchTime { get; set; } /// /// 联系方式 /// public string ContactWay { get; set; } /// /// 负责人 /// public string Principal { get; set; } /// /// 所属运营企业 /// public string? StationCompany { get; set; } /// /// 所属运营企业统一社会信用代码 /// public string? SocialCreditCode { get; set; } /// /// 站控主机软件版本号 /// public string StationSftVer { get; set; } /// /// 供应商代码 /// public string SupplierCode { get; set; } /// /// 换电站基础信息版本号 /// public string StationVersion { get; set; } /// /// 换电站硬件版本 /// public sbyte? HardwareVersion { get; set; } /// /// 封面图片文件id /// public string Cover { get; set; } /// /// 总体故障等级 /// public int? Faultlevel { get; set; } /// /// 加解锁方式 /// public sbyte? LockType { get; set; } /// /// 进入方式 /// public sbyte? AccessType { get; set; } /// /// 举升方式 /// public sbyte? RiseType { get; set; } /// /// 修改时间 /// public string? ModifyTime { get; set; } /// /// 配电容量(kVA) /// public int? DistributionCapacity { get; set; } /// /// 总功率(kW) /// public int? TotalPower { get; set; } /// /// 省份 /// public string StationProvince { get; set; } /// /// 城市 /// public string StationCity { get; set; } /// /// 组织机构ID /// public int? OrganizationId { get; set; } /// /// 站控电脑MAC地址 /// public string StationMac { get; set; } } }