| 123456789101112131415161718192021 | using System;using System.Collections.Generic;using System.Text;namespace wms.dto.request.hj{    public class hjstocktemp    {        public string Code { get; set; }        public long Id { get; set; }        public int Row { get; set; }        public int Col { get; set; }        public int Layer { get; set; }        public int Tunnel { get; set; }        public string ContGrpBarCode { get; set; }        public string Shelf { get; set; }        public string MatCode { get; set; }        public long MatId { get; set; }    }}
 |