Helius
2020-11-23 2888d44b350f5a12f877bf114871dcd34980e6e1
1
2
3
4
5
6
7
8
9
10
package com.xcong.excoin.common.system.dao;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Mapper;
 
@Mapper
public interface WtWordDao {
    List<String> selectAllWords();
}