18 lines
547 B
C#
18 lines
547 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 WmsEmptycarryInstockServiceInstockInput
|
|
{
|
|
public string carry_code { get; set; }
|
|
public string location_code { get; set; }
|
|
public string org_id { get; set; } = WmsWareHouseConst.AdministratorOrgId;
|
|
public string create_id { get; set; } = WmsWareHouseConst.AdministratorUserId;
|
|
}
|
|
}
|