using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { public class ApiLocationModel { /// /// 1:成功 /// -11:参数错误或为空 /// -101:没有组盘 /// -102:没有托盘 /// public string Code { get; set; } public string OutMode { get; set; } public string LocationCode { get; set; } public string LocationX { get; set; } public string LocationY { get; set; } public string LocationZ { get; set; } public string LocationD { get; set; } } }