1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NX_ModelClassLibrary.BaseModel
- {
- public class BasShelfMd
- {
- public int ShelfId { get; set; }
- public string Newid { get; set; }
- public string ShelfCode { get; set; }
- public string ShelfName { get; set; }
- public int ShelfIdx { get; set; }
- public string RegionCode { get; set; }
- public int RowSize { get; set; }
- public int ColSize { get; set; }
- public int LayerSize { get; set; }
- public string DevCode { get; set; }
- public int UsedFlag { get; set; }
- public int DelFlag { get; set; }
- public int CreateBy { get; set; }
- public DateTime CreateTime { get; set; }
- public int UpdateBy { get; set; }
- public DateTime UpdateTime { get; set; }
- public int DataVersion { get; set; }
- public string Remarks1 { get; set; }
- public string Remarks2 { get; set; }
- public string Remarks3 { get; set; }
- public string Remarks4 { get; set; }
- public string Remarks5 { get; set; }
- }
- }
|