21 lines
465 B
Java
21 lines
465 B
Java
package com.njcn.jbsyncdata.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.njcn.jbsyncdata.pojo.po.PmsPowerDistributionarea;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* <p>
|
|
* 台区信息 Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author wr
|
|
* @since 2023-11-20
|
|
*/
|
|
public interface PmsPowerDistributionareaMapper extends BaseMapper<PmsPowerDistributionarea> {
|
|
|
|
List<String> getDeptIds(@Param("id") String id);
|
|
}
|