You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
550 B
Java
35 lines
550 B
Java
package com.xydl.mapper;
|
|
|
|
import com.xydl.model.Epa;
|
|
import com.xydl.model.SuperModel;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
@Repository
|
|
public interface EpaMapper {
|
|
|
|
|
|
//油色谱
|
|
List<Epa> getEpa(int devid);
|
|
|
|
List<SuperModel> getData(String sql);
|
|
|
|
List<Integer> getEqmidsByTableName(String tableName);
|
|
|
|
List<String> getTableNamesBySyncTable(String syncTable);
|
|
|
|
String getSqlBySyncTable(String syncTable, String tableName);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|