1
yanjinhui
2025-09-24 bd09f6b4fdb821c9fb63e4dd0e9b184d29e9f148
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_ISquareCabinServices
{
    public interface ICustomerServices : IService<Dt_Customer>
    {
        /// <summary>
        /// 获取上游客户数据
        /// </summary>
        /// <returns></returns>
        public WebResponseContent GetCustomerList(DateTime searchDate);
    }
}