You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
767 B
C#
36 lines
767 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace XGL.Models.Model.OrderPrepare
|
|
{
|
|
public class WcsSyncResult
|
|
{
|
|
public string reqCode { get; set; }
|
|
public int code { get; set; }
|
|
public string message { get; set; }
|
|
}
|
|
public class MesResult
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
}
|
|
|
|
public class Rootobjectresu
|
|
{
|
|
public string msg { get; set; }
|
|
public int code { get; set; }
|
|
public Data data { get; set; }
|
|
}
|
|
|
|
public class Data
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public object data { get; set; }
|
|
}
|
|
|
|
}
|