23 lines
651 B
C#
23 lines
651 B
C#
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 MaterialSignInput
|
|
{
|
|
public string? org { get; set; } = WmsWareHouseConst.AdministratorOrgId;
|
|
public string? create_id { get; set; }
|
|
public string? carry_code { get; set; }
|
|
public List<MaterialSignDetailInput> details { get; set; }
|
|
}
|
|
public class MaterialSignDetailInput
|
|
{
|
|
public string? carry_code_id { get; set; }
|
|
public decimal sign_qty { get; set; }
|
|
}
|
|
}
|