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 MaterialTypeOutput
{
///
/// 类型描述
///
public string MaterialTypeDesc { get; set; }
///
/// 类型编码
///
public string MaterialTypeCode { get; set; }
}
}