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