Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Interfaces/IRedisDataService.cs
2023-11-06 19:35:59 +08:00

11 lines
238 B
C#

namespace Tnb.ProductionMgr.Interfaces
{
public interface IRedisDataService
{
/// <summary>
/// 根据机号获取重量
/// </summary>
Task<dynamic> GetWeight(string key, string field);
}
}