using System; using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; using WX.CRM.Model.MAP; using WX.CRM.Model.QueryMap; namespace WX.CRM.IBLL.Res { public interface IRES_ALLOCATESTRATEGY_Q { RES_ALLOCATESTRATEGY GetModel_AllocateStrategy(decimal id); List GetList(); List GetList_AllocateStrategy(ref Pager pg, string name, decimal salesgroupId, string checkProc, string allocateProc, string recyleProc, string viewProc, string stime, string etime); List GetMyAllocateResList(ref Pager pg, string resid, decimal inneruserid, string resourcetag, decimal resourcetypeid, decimal isview, decimal isnew, DateTime? stime, DateTime? etime, string groupId, string pkids = null); List GetMyAllocateResList2(ref Pager pg, string resid, QueryUserComboDto querydto, string resourcetag, decimal resourcetypeid, decimal isview, decimal isnew, DateTime? stime, DateTime? etime, decimal? productId, decimal? subproductId, DateTime? stimeTH, DateTime? etimeTH, string pkids, string category, DateTime? stimeGD, DateTime? etimeGD, DateTime? stimeKT, DateTime? etimeKT, DateTime? stimeFP, DateTime? etimeFP, decimal? hasTH, decimal? hasGD, decimal? isFP, string extxml,string deptId, decimal? midproductid = null); List GetMyZhenGuResList(ref Pager pg, string resid, decimal inneruserid, string resourcetag, decimal resourcetypeid, decimal isview, decimal isnew, DateTime? stime, DateTime? etime, string groupId, string pkids = null); void ViewMyRes(string customerid, decimal inneruserid); /// /// 获取分配资源的手机号码 /// /// 资源分配ID /// List GetFBMobile(ref Pager pg, string resid, decimal inneruserid, string resourcetag, decimal resourcetypeid, decimal isview, decimal isnew, DateTime? stime, DateTime? etime, string groupId); } }