初始化项目
This commit is contained in:
30
APIserver/Models/ModelGoods/jsonapi.cs
Normal file
30
APIserver/Models/ModelGoods/jsonapi.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Models.ModelGoods
|
||||
{
|
||||
public class jsonapi
|
||||
{
|
||||
public string ShippingCode { get; set; }
|
||||
public string OutBoxCode { get; set;}
|
||||
public List<ColorBarPair> CCodeBCodeList { get; set;}
|
||||
|
||||
public string Message { get; set; }
|
||||
public bool Status { get; set; }
|
||||
|
||||
|
||||
public int ProjectID { get; set; }
|
||||
public string Operator { get; set; }
|
||||
public DateTime ShippingDateTime { get; set; }
|
||||
public string ProjectName { get; set; }
|
||||
}
|
||||
public class ColorBarPair
|
||||
{
|
||||
|
||||
public string ColorBox { get; set; }
|
||||
public string BarCode { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user