11
This commit is contained in:
@@ -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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user