1
xiazhengtongxue
2026-02-07 4f2fb79143f0545e96f114c92e1da733b2d9716a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_Core.BaseServices;
using WIDESEA_Core.Enums;
using WIDESEA_DTO.Stock;
using WIDESEA_Model.Models;
 
namespace WIDESEA_ITaskInfoService;
 
public interface ITask_HtyService : IService<Dt_Task_Hty>
{
    WebResponseContent GetInOutTypeStats();
    WebResponseContent GetTodayInOutStats();
    WebResponseContent GetWarehouseOperationStatistics();
}