载具绑定物料接口

This commit is contained in:
2024-05-30 11:19:11 +08:00
parent 745599875d
commit 260dd5d195
6 changed files with 74 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class BindCarryCodeInput
{
public string carry_id { get; set; }
public string barcode { get; set; }
public decimal codeqty { get; set; }
public string material_id { get; set; }
public string material_code { get; set; }
public string material_name { get; set; }
public string location_id { get; set; } = "";
public string location_code { get; set; } = "";
public string code_batch { get; set; }
}
}