24 lines
713 B
C#
24 lines
713 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_USERPERCENT
|
|
{
|
|
List<WX_USERPERCENT_Extend> GetList(ref Pager page, decimal[] groupIds);
|
|
|
|
List<WX_USERPERCENT_Extend> 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<WX_USERPERCENT_Extend2> GetUserPercentToPush(decimal[] gids);
|
|
List<WX_USERPERCENT_Extend2> GetUserPercentByEidsToPush(string eids);
|
|
|
|
}
|
|
}
|