盘点单接口 报表优化

This commit is contained in:
2024-10-25 17:58:09 +08:00
parent 9fd13a55fc
commit 967055778f
6 changed files with 143 additions and 5 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tnb.WarehouseMgr.Entities.Consts;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class WmsInventorycheckSubmitInput
{
public string erp_line_pk { get; set; }
public List<WmsInventorycheckSubmitDetailInput> details { get; set; }
}
public class WmsInventorycheckSubmitDetailInput
{
public string carry_code { get; set; }
public string material_id { get; set; }
public string code_batch { get; set; }
public string actual_qty { get; set; }
public string location_id { get; set; }
}
}