using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; using WX.CRM.Model.MAP; namespace WX.CRM.IBLL.Wx { public interface IWX_GROUPPERCENT : IRepository { List GetGroupPercentList(); WX_GROUPPERCENT_Extend GetGroupPercentExtend(int gid); int UpdateWxGroupPercent(ref ValidationErrors errors, string percents, string gids); int GroupAverageAllot(ref ValidationErrors errors); List GetGroupPercentListJoinGroup(string gids); List GetSaleGroupEmplyeeNum(); } }