using Aucma.Scada.Model.domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Repository.service
{ ///
/// 条码绑定
///
public interface IBaseMaterialInfoService
{
///
/// 获取所有物料型号
///
List getAllInfos();
///
/// 获取箱壳和内胆部件
///
///
List getShellAndLiner();
}
}