using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Tiger.Model.Minsun;
|
|
namespace Tiger.Model
|
{
|
public class DefaultScanItemOutput
|
{
|
public int ReqType { get; set; }
|
public string ReqNo { get; set; }
|
public bool isExceed { get; set; }
|
public bool isCutting { get; set; }
|
public string SN { get; set; }
|
public string ItemCode { get; set; }
|
public string MaterialName { get; set; }
|
public decimal Qty { get; set; }
|
public decimal CutQty { get; set; }
|
public string regionCode { get; set; }
|
public string locationCode { get; set; }
|
public string ScanAfCut { get; set; }
|
public string Unit { get; set; }
|
public DateTime DateCode { get; set; }
|
public string Message { get; set; }
|
}
|
|
public class DefaultInStoreOutput
|
{
|
public string Barcode { get; set; }
|
public string MaterialCode { get; set; }
|
public string MaterialName { get; set; }
|
public decimal CurrentQty { get; set; }
|
public string Unit { get; set; }
|
public DateTime DateCode { get; set; }
|
public string WarehouseCode { get; set; }
|
public string RegionCode { get; set; }
|
public string ShelfCode { get; set; }
|
public string LocationCode { get; set; }
|
}
|
}
|