using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.MAP; namespace WX.CRM.IBLL.Wx { public interface IWX_USERPERCENT { List GetList(ref Pager page, decimal[] groupIds); List GetList(decimal[] groupIds); WX_USERPERCENT_Extend GetWxUserPercentExtend(int eid); int UpdateWxUserPercent(ref ValidationErrors errors, string percents, string gids, string eids); int UserAverageAllot(ref ValidationErrors errors, decimal[] groupIds); List GetUserPercentToPush(decimal[] gids); List GetUserPercentByEidsToPush(string eids); } }