Files
wcs/WCS.Model/ApiModel/MKYBackgroundThread/SysOrderRequest.cs
2024-12-21 18:46:18 +08:00

36 lines
574 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.MKYBackgroundThread
{
public class SysOrderRequest
{
public string itemNo { get; set; }
public string guid { get; set; }
public string matCode { get; set; }
public string matBatch { get; set; }
public string matSN { get; set; }
public string orderNumber { get; set; }
public int orderType { get; set; }
public string storeCode { get; set; }
public int qty { get; set; }
}
}