Files
Wx_AUTS_Prod/APIserver/Models/ModelGoods/jsonapi.cs
2025-11-26 17:42:45 +08:00

31 lines
758 B
C#

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; }
}
}