36 lines
574 B
C#
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; }
|
|
}
|
|
}
|