2023-07-12 09:41:18 +08:00
|
|
|
package com.cm.bigdata.service.kpi;
|
|
|
|
|
|
|
|
import com.cm.bigdata.pojo.pos.kpi.LeavePO;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public interface ILeaveService {
|
|
|
|
|
|
|
|
|
|
|
|
List<LeavePO> listPOByUserIdsAndDay(List<String> userIds, String day);
|
|
|
|
|
2023-08-07 16:36:40 +08:00
|
|
|
List<LeavePO> listPOByUserIdAndDay(String userId, String day);
|
2023-07-12 09:41:18 +08:00
|
|
|
}
|