23 lines
641 B
C#
23 lines
641 B
C#
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<WX_GROUPPERCENT>
|
|
{
|
|
List<WX_GROUPPERCENT_Extend> GetGroupPercentList();
|
|
|
|
WX_GROUPPERCENT_Extend GetGroupPercentExtend(int gid);
|
|
|
|
int UpdateWxGroupPercent(ref ValidationErrors errors, string percents, string gids);
|
|
|
|
int GroupAverageAllot(ref ValidationErrors errors);
|
|
|
|
List<WX_GROUPPERCENT_Extend> GetGroupPercentListJoinGroup(string gids);
|
|
|
|
List<WX_GroupEmployeeNum> GetSaleGroupEmplyeeNum();
|
|
}
|
|
}
|