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 FStationNo { get; set; } = null!;
///
/// 换电站名称
///
public string FStationName { get; set; } = null!;
///
/// 站类型
///
public string FStationType { get; set; } = null!;
///
/// 换电站识别号
///
public string FStationSn { get; set; } = null!;
///
/// 地理位置
///
public string FStationLocation { get; set; } = null!;
///
/// 经度
///
public string FLongitude { get; set; } = null!;
///
/// 纬度
///
public string FLatitude { get; set; } = null!;
///
/// 区域编号
///
public string FAreaCode { get; set; } = null!;
///
/// 区域名称
///
public string FAreaName { get; set; } = null!;
///
/// 营运开始时间
///
public DateTime FOperatetionstime { get; set; }
///
/// 营运结束时间
///
public DateTime FOperatetionetime { get; set; }
///
/// 服务状态
///
public sbyte FSevstatus { get; set; }
///
/// 运营状态:1营业状态 2暂停营业 3设备维护 4歇业状态
///
public sbyte FStatus { get; set; }
///
/// 投放时间
///
public DateTime? FLaunchTime { get; set; }
///
/// 联系方式
///
public string FContactWay { get; set; }
///
/// 负责人
///
public string FPrincipal { get; set; }
///
/// 所属运营企业
///
public string FStationCompany { get; set; }
///
/// 所属运营企业统一社会信用代码
///
public string FSocialCreditCode { get; set; } = null!;
///
/// 站控主机软件版本号
///
public string FStationSftVer { get; set; }
///
/// 供应商代码
///
public string FSupplierCode { get; set; } = null!;
///
/// 换电站基础信息版本号
///
public string FStationVersion { get; set; }
///
/// 换电站硬件版本
///
public sbyte? FHardwareVersion { get; set; }
///
/// 封面图片文件id
///
public string FCover { get; set; }
///
/// 总体故障等级
///
public int? FFaultlevel { get; set; }
///
/// 加解锁方式
///
public sbyte? FLockType { get; set; }
///
/// 进入方式
///
public sbyte? FAccessType { get; set; }
///
/// 举升方式
///
public sbyte? FRiseType { get; set; }
///
/// 创建时间
///
public DateTime FCreateTime { get; set; }
///
/// 修改时间
///
public DateTime? FModifyTime { get; set; }
///
/// 配电容量(kVA)
///
public int? FDistributionCapacity { get; set; }
///
/// 总功率(kW)
///
public int? FTotalPower { get; set; }
///
/// 省份
///
public string FStationProvince { get; set; }
///
/// 城市
///
public string FStationCity { get; set; }
///
/// 组织机构ID
///
public int? FOrganizationId { get; set; }
///
/// 站控电脑MAC地址
///
public string FStationMac { get; set; }
}
}