using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DM_Weight.Models { /// /// 逐日消耗专用账册中数量及批号 /// public class AccountTotalQuantity { //领药数量、发药数量、结存数量 public string StrTotalQuantity { get; set; } //数量对应的批号 public string StrTotalManuNo { get; set; } } }