| | |
| | | |
| | | import com.iailab.module.ansteel.power.entity.PowerMaxdemandDetEntity; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | | * @Description |
| | |
| | | public interface PowerMaxdemandDetService { |
| | | |
| | | void add(PowerMaxdemandDetEntity entity); |
| | | |
| | | List<PowerMaxdemandDetEntity> addList(String relId, String groupName, Date occurTime); |
| | | |
| | | List<PowerMaxdemandDetEntity> selectListByRelIds(List<String> relIds); |
| | | |
| | | List<PowerMaxdemandDetEntity> selectListByRelId(String relId, Date occurTime); |
| | | |
| | | List<PowerMaxdemandDetEntity> selectListByRelId(String relId); |
| | | } |