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.

105 lines
3.0 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.Api.Resp
{
/// <summary>
/// 站点基础信息
/// </summary>
public class StationBaseInfoResp
{
/// <summary>
/// 换电站编码
/// </summary>
public string StationNo { get; set; } = null!;
/// <summary>
/// 换电站名称
/// </summary>
public string StationName { get; set; } = null!;
/// <summary>
/// 站类型
/// </summary>
public string StationType { get; set; } = null!;
/// <summary>
/// 换电站识别号
/// </summary>
public string StationSn { get; set; } = null!;
/// <summary>
/// 地理位置
/// </summary>
public string StationLocation { get; set; } = null!;
/// <summary>
/// 经度
/// </summary>
public string Longitude { get; set; } = null!;
/// <summary>
/// 纬度
/// </summary>
public string Latitude { get; set; } = null!;
/// <summary>
/// 区域编号
/// </summary>
public string AreaCode { get; set; } = null!;
/// <summary>
/// 区域名称
/// </summary>
public string AreaName { get; set; } = null!;
/// <summary>
/// 营运开始时间
/// </summary>
public string Operatetionstime { get; set; }
/// <summary>
/// 营运结束时间
/// </summary>
public string Operatetionetime { get; set; }
/// <summary>
/// 服务状态
/// </summary>
public sbyte Sevstatus { get; set; }
/// <summary>
/// 运营状态1营业状态 2暂停营业 3设备维护 4歇业状态
/// </summary>
public sbyte Status { get; set; }
/// <summary>
/// 投放时间
/// </summary>
public string? LaunchTime { get; set; }
/// <summary>
/// 联系方式
/// </summary>
public string ContactWay { get; set; }
/// <summary>
/// 负责人
/// </summary>
public string Principal { get; set; }
/// <summary>
/// 所属运营企业
/// </summary>
public string StationCompany { get; set; }
/// <summary>
/// 所属运营企业统一社会信用代码
/// </summary>
public string SocialCreditCode { get; set; } = null!;
/// <summary>
/// 站控主机软件版本号
/// </summary>
public string StationSftVer { get; set; }
/// <summary>
/// 供应商代码
/// </summary>
public string SupplierCode { get; set; } = null!;
/// <summary>
/// 换电站基础信息版本号
/// </summary>
public string StationVersion { get; set; }
/// <summary>
/// 换电站硬件版本
/// </summary>
public sbyte? HardwareVersion { get; set; }
}
}