25 lines
511 B
C#
25 lines
511 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.ApiModel.BD
|
|||
|
|
{
|
|||
|
|
public class EnergyStoreModel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前存量
|
|||
|
|
/// </summary>
|
|||
|
|
public Decimal Qty { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 预留存量
|
|||
|
|
/// </summary>
|
|||
|
|
public Decimal ReserveQty { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 可用存量
|
|||
|
|
/// </summary>
|
|||
|
|
public Decimal AvailaQty { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|