19 lines
413 B
C#
19 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Dto
|
|
{
|
|
public class WmsPrdInstockDInput
|
|
{
|
|
public string task_bill_code { get; set; }
|
|
|
|
public string warehouse_id { get; set; }
|
|
|
|
public string startlocation_id { get; set; }
|
|
public string carry_id { get; set; }
|
|
}
|
|
}
|