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 ISupplierServices : IService<Dt_Supplier>
|
{
|
|
/// <summary>
|
/// 获取上游供应商数据
|
/// </summary>
|
/// <param name="searchDate"></param>
|
/// <returns></returns>
|
public WebResponseContent SyncSupplier(DateTime searchDate);
|
}
|
}
|