package com.tievd.jyz.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.tievd.jyz.entity.DepartLabel; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; public interface DepartLabelMapper extends BaseMapper { List> queryDepartLabelList(@Param("labelName") String labelName, @Param("parentCode") String parentCode, @Param("parentId") String parentId); List queryAllLabelNames(@Param("parentCode") String parentCode, @Param("parentId") String parentId); List> queryOrgOilCount(@Param("orgCode") String orgCode, @Param("startTime") String startTime, @Param("endTime") String endTime); }