You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
560 B
C#

using Admin.Core.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.IService.IService_New
{
/// <summary>
/// 料筒服务类
/// </summary>
public interface IHw_BarrelServices : IBaseServices<Hw_Barrel>
{
/// <summary>
/// 根据罐号获取料罐ID
/// </summary>
/// <param name="barrelBarcode"></param>
/// <returns></returns>
string GetMaterialNameByBarrelID(string barrelBarcode);
}
}