using Common.Enum; using Entity.Api.Resp; using Entity.DbModel.Station; using Entity.Dto.Req; using HybirdFrameworkCore.Autofac.Attribute; using HybirdFrameworkCore.Entity; using Repository.Station; using Repository.System; using Service.Mgr; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Service.Station { [Scope("SingleInstance")] public class ExStationDayRunResultService : BaseServices { ExStationDayRunResultRepository _exStationDayRunResultRepository; public ExStationDayRunResultService(ExStationDayRunResultRepository dal) { _exStationDayRunResultRepository = dal; BaseDal = dal; } /// /// 展示换电站日运行统计结果 /// /// public async Task> ExStationDaySwapRunRes(QueryPageModel queryPageModel) { return PageResult.ConvertPage(_exStationDayRunResultRepository.QueryIPageByCause(queryPageModel, null)); } /// /// 根据id 删除换电站日运行结果 /// /// /// public async Task DeleteDaySwapRunRes(int id) { return await _exStationDayRunResultRepository.DeleteByIdAsync(id); } /// /// 根据id 批量删除换电站日运行结果 /// /// /// public async Task BatchDeleteDaySwapRunRes(List ids) { return await _exStationDayRunResultRepository.DeleteByIdsAsync(ids); } } }