using DTO; using Microsoft.AspNetCore.Mvc.Rendering; using System; using System.Collections.Generic; using System.Text; using zhengcaioa.Models; namespace IServices { public interface IIntentionCustomerService { ResultEntity save(IntentionCustomerDTO intentionCustomerDTO); IntentionCustomerDTO Get(string id); IntentionCustomerDTO GetByName(string name); ResultDataEntity SearchByPaging(IntentionCustomerDTOSearch searchEntity); ResultEntity ModifyStatus(string id, string userid); List GetList(string huiyuanId = null); /// /// 获取所有有效意向客户 /// /// List GetList(string[] id); List GetListsalary(string userid, DateTime datemin, DateTime datemax); List GetListsalaryweixin(string userid, DateTime datemin, DateTime datemax); List GetListsalaryyixiang(string userid, DateTime datemin, DateTime datemax); } }