17 lines
345 B
Java
17 lines
345 B
Java
|
|
package com.njcn.jbsyncdata.service;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
|
import com.njcn.jbsyncdata.pojo.po.PmsPowerDistributionarea;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* <p>
|
||
|
|
* 台区信息 服务类
|
||
|
|
* </p>
|
||
|
|
*
|
||
|
|
* @author wr
|
||
|
|
* @since 2023-11-20
|
||
|
|
*/
|
||
|
|
public interface IPmsPowerDistributionareaService extends IService<PmsPowerDistributionarea> {
|
||
|
|
|
||
|
|
}
|