username@email.com
2024-09-09 cc170291673472d3cda8d7ea77f6bd3a3b5dbb83
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
37
38
39
40
41
42
43
44
45
/***********************************************************************
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统                               
 *                Web: http://chuanyin.com                     
 *             Author:                                        
 *              Email:                               
 *         CreateTime: 202403/02   
 *        Description: 暂无
 ***********************************************************************/
 
using System.Threading.Tasks;
using CoreCms.Net.Model.Entities;
using CoreCms.Net.Model.ViewModels.UI;
 
namespace CoreCms.Net.IServices
{
    /// <summary>
    ///     物流公司表 服务工厂接口
    /// </summary>
    public interface ICoreCmsLogisticsServices : IBaseServices<CoreCmsLogistics>
    {
        /// <summary>
        ///     根据物流编码取物流名称等信息
        /// </summary>
        /// <param name="logiCode">物流编码</param>
        /// <returns></returns>
        Task<WebApiCallBack> GetLogiInfo(string logiCode);
 
 
        /// <summary>
        ///     通过接口
        /// </summary>
        Task<AdminUiCallBack> DoUpdateCompany();
 
 
        /// <summary>
        ///     通过接口获取快递信息
        /// </summary>
        /// <param name="com">来源</param>
        /// <param name="number">编号</param>
        /// <param name="phone">手机号码</param>
        /// <returns></returns>
        Task<WebApiCallBack> ExpressPoll(string com, string number, string phone);
    }
}