using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareSql.Entity.ViewMode { /// /// 库位位置视图 /// public class PlaceLocationView { /// /// 排 /// public int? Row { get; set; } /// /// 列 /// public int? Col { get; set; } /// /// 层 /// public int? Layer { get; set; } } }