qinchulong
2024-10-12 b17d60113095491a95557f6f785cb1c0e744e8cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_Services
{
    public interface IDt_TaskService : IService<Dt_Task>
    {
        Task<Dt_Task> GetById(int id);
 
        Task<Dt_Task> GetByLocation(string locationID);
 
        Task<Dt_Task> GetByTaskNum(int taskNum);
 
        Task<List<Dt_Task>> GetList();
 
        Task<Dt_Task> Create(Dt_Task model);
 
        Task<bool> Create(List<Dt_Task> models);
 
        Task<bool> Update(Dt_Task model);
 
        Task<bool> Update(List<Dt_Task> models);
 
        Task<bool> Delete(int id);
 
        Task<bool> Delete(List<int> ids);
 
        Task<List<Dt_Task>> GetListByOutOrder(int outOrderId);
 
        Task<List<Dt_Task>> GetListByOutOrderAndStatus(int outOrderId, int status);
 
        Task<List<Dt_Task>> GetListByStatus(int status);
 
        bool IsExist(string palletCode);
    }
}