using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.Api.Req
{
///
/// 编辑站点基础信息
///
public class StationBaseInfoReq
{
///
/// 换电站编码
///
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 DateTime Operatetionstime { get; set; }
///
/// 营运结束时间
///
public DateTime Operatetionetime { get; set; }
///
/// 服务状态
///
public sbyte Sevstatus { get; set; }
///
/// 运营状态:1营业状态 2暂停营业 3设备维护 4歇业状态
///
public sbyte Status { get; set; }
///
/// 投放时间
///
public DateTime? 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; }
///
/// 总体故障等级
///
public int? Faultlevel { get; set; }
///
/// 加解锁方式
///
public sbyte? LockType { get; set; }
///
/// 进入方式
///
public sbyte? AccessType { get; set; }
///
/// 举升方式
///
public sbyte? RiseType { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 修改时间
///
public DateTime? 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; }
}
}