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.

18 lines
341 B

namespace Entity.Api.Resp;
/// <summary>
/// 仓库电池
/// </summary>
public class BinBatteryResp
{
/// <summary>
///电池总数
/// </summary>
public int BatteryTotalCount { get; set; }
/// <summary>
///可用换电电池数量
/// </summary>
public int UsingSwapBatteryCount { get; set; }
}