using PMS.EntityModels.Product; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PMS.Interface.Product { public interface IWTJLModel { /// /// 获取渠道信息 /// /// /// string GETQDinfo(string channel); /// /// 获取渠道信息(根据人员性质来查询) /// /// /// string GetChanels(int personProp,string companyid); /// /// 渠道所属项目查询 /// /// /// string QdXm(string qdID); /// /// 获取项目机构 /// /// /// string XmJgs(string jgID); /// /// 获取项目产品 /// /// /// string XmCp(string XmID); /// /// 获取性质信息 /// /// string GETXZinfo(); /// /// 获取紧急程度信息 /// /// string GETJJCDinfo(); /// /// 获取流程环节 /// /// string LCHJ(); /// /// 卫计委,本部,渠道人员根据渠道id查询数据权限 /// /// /// /// /// string ProjectZdyCxInfoQKW(string channel, int page, int rows); /// /// 客户人员(自己登记的问题) /// /// /// /// /// string ProjectZdyCxInfoKh(string DJRID, int page, int rows); /// /// 4医院管理员 自己机构(站点信息)的数据 /// /// /// /// string ProjectZdyCxZd(string DJRID, int page, int rows); /// /// 自定义方案查询 /// /// /// string ProjectZdyCxInfo(WTJLModel model, int page, int rows); /// /// 快速查询 /// /// string KsSelect(string KsCx, int page, int rows, int total); /// /// 获取问题处理状态 /// /// /// /// string DealProblem(string wTid, string v); } }