You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
619 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Ys.Core.Common;
using djy.Paas.Model;
namespace djy.Paas.IService
{
/// <summary>
/// 客户资料接口
/// </summary>
public interface IClientLinkInfoService:IsBase
{
/// <summary>
/// 企业客户联系信息查询
/// </summary>
/// <param name=""></param>
/// <param name="apiFrom"></param>
/// <returns></returns>
ReturnPagedResult<ClientLinkInfoDto> GetList(ClientLinkInfoDto Dto, ApiFromDto apiFrom);
}
}