using Nirvana.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Waste.Application
{
///
/// 投放记录
///
public interface IResultService
{
///
/// 垃圾分类列表
///
///
///
Task> GetListAsync(QueryParams param);
///
/// 添加记录
///
///
///
Task InsertResultAsync(MyPackage myPackage);
///
/// 新的4G模块测量结果增加
///
///
///
Task InsertResultBy4GAsync(nMyPackage myPackage);
}
}