18 lines
387 B
C#
18 lines
387 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 根据机号获取重量
|
|
/// </summary>
|
|
Task<dynamic> GetWeight(string key, string field);
|
|
}
|
|
}
|