using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace AppWebservice.Model
{
public class MaterialInfoModel
{
///
/// 条码
///
public string Code { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 批次
///
public string Batch { get; set; }
}
}