using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WCS.HangYang.LISTA.models.wms
{
public class AddChangeModel
{
///
/// 5 - 仓库加存储量,用于 入库完成
/// 6 - 库区加存储量,用于库区入库完成,
/// 7 - 库区减存储、分配量,用于 库区出库完成
/// 8 - 仓库减存储量,9 - 库区减存储量
/// 10 - 仓库减分配量,用于 配货后取消,
/// 11 - 库区减分配量,用于 配货后取消
///
public int op_type { get; set; }
public List item_info { get; set; } = new List();
public class itemModel
{
public string wh_code { get; set; } = "";
public string area_code { get; set; } = "";
public string loc_code { get; set; } = "";
public string item_code { get; set; }
public string item_name { get; set; }
public float qty { get; set; }
}
}
public class moboxres
{
public int err_code { get; set; }
public string err_msg { get; set; } = "";
}
}