using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Epost.Model { public class AddressstorageModel : Base {//address, type, state, area, gateid, location public long Row { get; set; }//行号 public int ID { get; set; }//添加ID public string address { get; set; } public string bkaddress { get; set; } public string type { get; set; }//type public string state { get; set; } public string addresstype { get; set; } public string gateid { get; set; }//关联字段 public string area { get; set; } public int Area_area { get; set; } public string block { get; set; } public string way { get; set; } public string location { get; set; } public string ControlIP { get; set; }//ip public string shelfid { get; set; }//货架 public string UserName { get; set; } public int Number { get; set; }//件数 public int Count { get; set; } public string info { get; set; } public string layer { get; set; } public string slist { get; set; } } }