|
@ -18,8 +18,10 @@ |
|
|
package com.elink.esua.epdc.dao; |
|
|
package com.elink.esua.epdc.dao; |
|
|
|
|
|
|
|
|
import com.elink.esua.epdc.commons.mybatis.dao.BaseDao; |
|
|
import com.elink.esua.epdc.commons.mybatis.dao.BaseDao; |
|
|
|
|
|
import com.elink.esua.epdc.dto.ScreenGridDTO; |
|
|
import com.elink.esua.epdc.entity.ScreenGridEntity; |
|
|
import com.elink.esua.epdc.entity.ScreenGridEntity; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 网格表 |
|
|
* 网格表 |
|
@ -29,5 +31,6 @@ import org.apache.ibatis.annotations.Mapper; |
|
|
*/ |
|
|
*/ |
|
|
@Mapper |
|
|
@Mapper |
|
|
public interface ScreenGridDao extends BaseDao<ScreenGridEntity> { |
|
|
public interface ScreenGridDao extends BaseDao<ScreenGridEntity> { |
|
|
|
|
|
|
|
|
|
|
|
ScreenGridDTO detailByDeptId(@Param("deptId") String deptId); |
|
|
} |
|
|
} |