This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
yinjiangyi-uaanalyser/src/main/java/com/example/ua/dao/QueryMariaDb.java
yinjiangyi 5f7c6af5b6 commit v2
2020-11-15 13:15:04 +08:00

21 lines
431 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.example.ua.dao;
import org.mariadb.jdbc.MariaDbStatement;
import java.util.List;
/**
* @author yjy
* @version 1.0
* @date 2020/11/15 12:20 下午
*/
public interface QueryMariaDb {
/**
* 接口函数
* @param ua 查询ua
* @param connStatement conn
* @return 三元组OSbrowser device结果
*/
public List<String> getTriple(MariaDbStatement connStatement, String ua);
}