| 12345678910111213141516171819202122232425262728293031323334 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace WMS.Util{    public class LocShowDetail    {        //托盘号        public string F_CONTRGRPBARCODE { get; set; }        //周转箱号        public string F_CONTRBARCODE { get; set; }        //物料号        public string F_MATNO { get; set; }        //无聊名称        public string F_MATNAME { get; set; }        //排序        public int F_CONTRSORT { get; set; }        //数量        public string F_QTY { get; set; }        //批次号        public string F_BATCHNO { get; set; }        //版本        public string F_MATVERSION { get; set; }        //档位        public string F_MATGEAR { get; set; }        //锁定出库号        public string F_OUTLOCKONO { get; set; }    }}
 |