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; } = null!; /// /// 换电站名称 /// public string StationName { get; set; } = null!; /// /// 站类型 /// public string StationType { get; set; } = null!; /// /// 换电站识别号 /// public string StationSn { get; set; } = null!; /// /// 地理位置 /// public string StationLocation { get; set; } = null!; /// /// 经度 /// public string Longitude { get; set; } = null!; /// /// 纬度 /// public string Latitude { get; set; } = null!; /// /// 区域编号 /// public string AreaCode { get; set; } = null!; /// /// 区域名称 /// public string AreaName { get; set; } = null!; /// /// 营运开始时间 /// public string Operatetionstime { get; set; } /// /// 营运结束时间 /// public string Operatetionetime { get; set; } /// /// 服务状态 /// public sbyte Sevstatus { get; set; } /// /// 运营状态:1营业状态 2暂停营业 3设备维护 4歇业状态 /// public sbyte Status { 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; } = null!; /// /// 站控主机软件版本号 /// public string StationSftVer { get; set; } /// /// 供应商代码 /// public string SupplierCode { get; set; } = null!; /// /// 换电站基础信息版本号 /// public string StationVersion { get; set; } /// /// 换电站硬件版本 /// public sbyte? HardwareVersion { get; set; } } }