You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
398 B
C#
14 lines
398 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Magic.Core.Service;
|
|
|
|
public interface ISysEmpPosService
|
|
{
|
|
Task AddOrUpdate(long empId, List<long> posIdList);
|
|
Task DeleteEmpPosInfoByUserId(long empId);
|
|
Task<List<EmpPosOutput>> GetEmpPosList(long empId);
|
|
Task<List<EmpPosOutput>> GetEmpPosList(List<long> empIds);
|
|
Task<bool> HasPosEmp(long posId);
|
|
}
|