xby-y
2026-04-09 b3ff80e45d24a821ca0731983b1546b48570cdf1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_IHomeService
{
    public interface IHomeService : IService<Dt_Task_Hty>
    {
        IRepository<Dt_Task_Hty> Repository { get; }
        /// <summary>
        /// 获取历史任务信息出库存数据
        /// </summary>
        /// <returns></returns>
        WebResponseContent GetDt_TaskHty();
    }
}