You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
343 B
15 lines
343 B
package com.mh.user.service; |
|
|
|
import com.mh.user.entity.PumpSetEntity; |
|
|
|
public interface PumpSetService { |
|
|
|
void savePumpSet(PumpSetEntity pumpSetEntity); |
|
|
|
void updatePumpSetTemp(String tempSet, String buildingId, String pumpId); |
|
|
|
PumpSetEntity queryPumpSet(String pumpId, String buildingId); |
|
|
|
PumpSetEntity queryHandTime(); |
|
|
|
}
|
|
|