Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Entities/Dto/Inputs/WmsPrdInstockInput.cs
2024-05-28 09:56:27 +08:00

25 lines
825 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class WmsPrdInstockInput
{
public string prd_bill_code { get; set; }
public string material_id { get; set; }
public string material_code { get; set; }
public string material_name { get; set; }
public string material_spec { get; set; }
public decimal planqty { get; set; }
public decimal pqty { get; set; }
public decimal rqty { get; set; }
public string type { get; set; }
public string create_id { get; set; }
public List<WmsPrdInstockDInput> prdInstockDs { get; set; }
public List<WmsPrdInstockCodeInput> prdInstockCodes { get; set; }
}
}