20 lines
779 B
C#
20 lines
779 B
C#
using System;
|
|
using System.Data;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Soft
|
|
{
|
|
public interface ISOFT_USER
|
|
{
|
|
bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.SOFT_USER model);
|
|
void Update(SOFT_USER model);
|
|
bool ActiveUpdate(ref ValidationErrors errors, SOFT_USER model);
|
|
void UpdateByLastLoginTime(string resid);
|
|
bool InserSoftUser(bool isOne, string resid, string tag, string cardNo, string userName, DateTime? regDate, int companyId, string activeMobile = null, string platform = null);
|
|
|
|
DataSet GetInvistListCount(DateTime? stime, DateTime? etime, decimal? hasMobile, string deptId, string groupId, string innerUserId);
|
|
void InsertLog(SOFT_USER_LOG model);
|
|
}
|
|
}
|