using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace Tnb.ProductionMgr.Interfaces
{
public interface IRedisDataService
{
///
/// 根据机号获取重量
///
Task GetWeight(string key, string field);
}
}