| | |
| | | using Model.ModelDto.SysDto; |
| | | using Model.ModelVm.SysVm; |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Text; |
| | |
| | | /// <param name="limit"></param> |
| | | /// <param name="count"></param> |
| | | /// <returns></returns> |
| | | List<LogisticsInfoDto> GetLogisticsInfoList(string name,string linkMan,string phone,string licensePlate,string type,int page,int limit,out int count); |
| | | Task<List<LogisticsInfoDto>> GetLogisticsInfoList(string name, string linkMan, string phone, string licensePlate, string type, int page, int limit, RefAsync<int> count); |
| | | /// <summary> |
| | | /// 查询单条物流信息 |
| | | /// </summary> |
| | | /// <param name="id"></param> |
| | | /// <returns></returns> |
| | | SysLogisticsInfo GetLogisticsInfo(int id); |
| | | Task<SysLogisticsInfo> GetLogisticsInfo(int id); |
| | | /// <summary> |
| | | /// 查询全部物流信息 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | List<SysLogisticsInfo> GetLogisticsInfoSelect(); |
| | | Task<List<SysLogisticsInfo>> GetLogisticsInfoSelect(); |
| | | /// <summary> |
| | | /// 添加物流信息 |
| | | /// </summary> |
| | | /// <param name="model"></param> |
| | | /// <param name="userId">操作人</param> |
| | | /// <returns></returns> |
| | | bool AddLogisticsInfo(AddLogisticsInfoVm model, int userId); |
| | | Task<bool> AddLogisticsInfo(AddLogisticsInfoVm model, int userId); |
| | | /// <summary> |
| | | /// 编辑物流信息 |
| | | /// </summary> |
| | | /// <param name="model"></param> |
| | | /// <param name="userId">操作人</param> |
| | | /// <returns></returns> |
| | | bool EditLogisticsInfo(EditLogisticsInfoVm model, int userId); |
| | | Task<bool> EditLogisticsInfo(EditLogisticsInfoVm model, int userId); |
| | | /// <summary> |
| | | /// 删除单条物流信息 |
| | | /// </summary> |
| | | /// <param name="id"></param> |
| | | /// <param name="userId">操作人</param> |
| | | /// <returns></returns> |
| | | bool DelLogisticsInfo(int id,int userId); |
| | | Task<bool> DelLogisticsInfo(int id, int userId); |
| | | |
| | | /// <summary> |
| | | /// 删除物流信息(多条信息) |
| | |
| | | /// <param name="ids"></param> |
| | | /// <param name="userId">操作人</param> |
| | | /// <returns></returns> |
| | | bool DelsLogisticsInfo(List<int> ids,int userId); |
| | | Task<bool> DelsLogisticsInfo(List<int> ids, int userId); |
| | | } |
| | | } |