12 lines
308 B
C#
12 lines
308 B
C#
namespace Tnb.WarehouseMgr.Entities.Dto
|
|
{
|
|
/// <summary>
|
|
/// 扫码投料
|
|
/// </summary>
|
|
public class FeedingDetailOutput
|
|
{
|
|
public string carry_id { get; set; }
|
|
public string carry_name { get; set; }
|
|
public List<CarryCodeDetailOutput> children { get; set; }
|
|
}
|
|
} |