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.
13 lines
272 B
13 lines
272 B
6 months ago
|
namespace Entity.Dto.Req;
|
||
|
|
||
|
public class DistributeElecPriceReq
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 充电机号
|
||
|
/// </summary>
|
||
|
public string BinNo { get; set; }
|
||
|
/// <summary>
|
||
|
/// 电价模型详情:版本
|
||
|
/// </summary>
|
||
|
public int Version { get; set; }
|
||
|
}
|