using Service.Cloud.Common; namespace Service.Cloud.Msg.Host.Req; /// /// 3.2.1.1 换电站进行签到认证 /// public class SignIn : ICmd { /// /// 换电站编码 /// public string sn { get; set; } /// /// 供应商识别码 /// (以中心平台给出为准). 每个厂家对应一个 Key /// public string ky { get; set; } /// /// 换电站类型 /// 01:单道通左 02:单通道右 03:双道通 /// /// public string st { get; set; } /// /// 设备型号 /// public string dv { get; set; } /// /// 软件版本 /// 站类型代号(24 个大写字母)_X.XX,其中 X 位 0~9 数字,非重大改变,整数数字不改变,小数点后数字单数加 0,双数不变,依次累加,比如A_1.01 /// public string sv { get; set; } /// /// 换电站服务状态 /// 0:未知;1:服务状态;2:停止服务状态 /// public int ss { get; set; } /// /// 换电站配电容量 /// 单位 0.1kwh /// public float ca { get; set; } /// /// 设备列表配置版本 号 /// public string VS { get; set; } /// /// 充电功率 /// public int cp { get; set; } /// /// 换电站基础信息版 本号 /// 换电站基础信息版本号(换电站编码+更新时间(yyyyMMddHHmmss) /// public string bs { get; set; } /// /// 经度 /// public string lo { get; set; } /// /// 纬度 /// public string la { get; set; } /// /// 换电通道数量 /// 换电通道的数目 /// public int en { get; set; } /// /// 充电机(仓)数量 /// public int cn { get; set; } /// /// 电价模型id /// 服务器分配,默认值为-1 /// public int eid { get; set; } /// /// 电池运营模型id /// 服务器分配,默认为值-1 /// public int oid { get; set; } public string GetCmd() { return CloudConst.signIn; } }