添加项目文件。

This commit is contained in:
jl
2023-01-13 15:30:20 +08:00
parent 40ed216831
commit bf208bde56
834 changed files with 470902 additions and 0 deletions

View File

@ -0,0 +1,36 @@
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; }
}
}