using iWareDataCore.BASE.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareCc.DecomposeTask.Entity { /// /// 位置容器 /// public class PlaceContainer { private PlaceViewEntity place = null; /// /// 位置 /// public PlaceViewEntity Place { get { return place; } set { place = value; } } } }