using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.CommonDto
{
///
/// 机型输出
///
public class MaterialModelOutput
{
///
/// 机型
///
public string MaterialModel { get; set; }
///
/// 机型描述
///
public string MaterialModelDesc { get; set; }
}
///
/// 库位列表输出
///
public class PlaceListOutput
{
///
/// 库位号
///
public string PlaceNo { get; set; }
///
/// 库位号
///
public string PlaceNoDesc { get; set; }
}
}