34 lines
1.1 KiB
C#
34 lines
1.1 KiB
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 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; }
|
|
/// <summary>
|
|
/// 规格型号
|
|
/// </summary>
|
|
public string? material_specification { get; set; }
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
public string? container_no { get; set; }
|
|
public string location_id { get; set; } = "";
|
|
public string location_code { get; set; } = "";
|
|
public string code_batch { get; set; }
|
|
public string unit_id { get; set; } = "";
|
|
public string unit_code { get; set; } = "";
|
|
public string create_id { get; set; } = WmsWareHouseConst.AdministratorUserId;
|
|
}
|
|
}
|