This commit is contained in:
qianjiawei
2023-12-18 17:17:48 +08:00
parent dc784077f0
commit 296c618bf5
5 changed files with 111 additions and 125 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class CarryMaterialBindInput
{
public string? carrycode { get; set; }
public List<CarryMaterialDetail> details { get; set; }
}
public class CarryMaterialDetail
{
public string? material_id { get; set; }
public string? material_code { get; set; }
public string? barcode { get; set; }
public string? code_batch { get; set; }
public string? codeqty { get; set; }
public int is_out { get; set; }
public string? unit_id { get; set; }
}
}