19 lines
730 B
C#
19 lines
730 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_INNERUSERJOBNUM
|
|
{
|
|
WX_INNERUSERJOBNUM GetModel(decimal pkid);
|
|
List<WX_INNERUSERJOBNUM_Extend> GetList(ref Pager page, string username, string num, string inneruserId, string groupId, decimal salesId);
|
|
|
|
List<WX_INNERUSERJOBNUM_Extend> GetList(ref Pager page, string alias);
|
|
bool Create(ref ValidationErrors errors, decimal eid, string username, string num);
|
|
bool Update(ref ValidationErrors errors, decimal pkid, decimal eid, string username, string num);
|
|
bool Delete(ref ValidationErrors errors, decimal id);
|
|
}
|
|
}
|