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 GetList(ref Pager page, string username, string num, string inneruserId, string groupId, decimal salesId); List 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); } }