using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace iWare.Wms.Application.Service.WmsBase.WmsPart.Dto
|
{
|
public class WarePartOutputDto
|
{
|
public string Code { get; set; }
|
public string Name { get; set; }
|
public string LineType { get; set; }
|
}
|
}
|