鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
昨天 ec66217b02f5574c4c358618ed66adf160cdfa9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.iailab.module.ansteel.power.dao;
 
import com.iailab.framework.common.dao.BaseDao;
import com.iailab.module.ansteel.power.entity.PeakValleyFlatEntity;
import com.iailab.module.ansteel.power.entity.PowerDemandEntity;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @author dyk
 * @Description
 * @createTime 2025年05月05日
 */
@Mapper
public interface PeakValleyFlatDao extends BaseDao<PeakValleyFlatEntity> {
 
}