12345678910111213141516171819202122232425 |
- package com.gyee.power.fitting.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.gyee.power.fitting.model.Windturbinetestingpointai2;
- import java.util.List;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author chenmh
- * @since 2022-11-01
- */
- public interface Windturbinetestingpointai2Service extends IService<Windturbinetestingpointai2> {
- List<Windturbinetestingpointai2> selectList(String station, List<String> points);
- void getZlTag(String wtid);
- List<Windturbinetestingpointai2> getFaultCodes();
- List<Windturbinetestingpointai2> getPoints(String station, String windturbine, String uniformcode);
- }
|