17 lines
344 B
Java
17 lines
344 B
Java
package com.njcn.jbsyncdata.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.njcn.jbsyncdata.pojo.po.PmsPowerDistributionarea;
|
|
|
|
/**
|
|
* <p>
|
|
* 台区信息 Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author wr
|
|
* @since 2023-11-20
|
|
*/
|
|
public interface PmsPowerDistributionareaMapper extends BaseMapper<PmsPowerDistributionarea> {
|
|
|
|
}
|