27 lines
642 B
C#
27 lines
642 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using System.Data;
|
|
|
|
namespace WebApi
|
|
{
|
|
public class IPC_product
|
|
{
|
|
public string MsgId = "";
|
|
public int MsgSource = 0;
|
|
public List<IPC_product_AssemblyInformation> AssemblyInformation = new List<IPC_product_AssemblyInformation>();
|
|
public string SendTime = string.Empty;
|
|
}
|
|
|
|
public class IPC_product_AssemblyInformation
|
|
{
|
|
public string productNo = string.Empty;
|
|
public string productName = string.Empty;
|
|
public int productPosition = 0;
|
|
}
|
|
|
|
}
|