1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.iailab.module.ansteel.power.dao;
|
| import com.iailab.framework.common.dao.BaseDao;
| import com.iailab.module.ansteel.power.entity.PowerMaxdemandMainEntity;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * @author PanZhibao
| * @Description
| * @createTime 2025年05月07日
| */
| @Mapper
| public interface PowerMaxdemandMainDao extends BaseDao<PowerMaxdemandMainEntity> {
| }
|
|