17 lines
463 B
C#
17 lines
463 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public class ConsignmentComponent:Entity
|
|||
|
{
|
|||
|
public static ConsignmentComponent Instance{ get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 根据寄售物品Id
|
|||
|
/// </summary>
|
|||
|
public Dictionary<long, Consignment> ConsignmentDic = new Dictionary<long, Consignment>();
|
|||
|
public Dictionary<long, int> CountDic= new Dictionary<long, int>();
|
|||
|
}
|
|||
|
}
|