xiaoyong931011
2020-11-30 7ae23e17d8e90dc634f3f86e2eee209cbacaace3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.xcong.excoin.modules.login.dao;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import com.xcong.excoin.modules.login.entity.WtToken;
 
 
@Mapper
public interface WtTokenDao {
 
 
     int insert(@Param("item") WtToken wtToken);
      
       int batchInsert(@Param("list") List<WtToken> wtTokenList);
 
     int updateByModel(@Param("record") WtToken wtToken);
 
     int deleteById(Integer id);
 
     WtToken  selectById(Integer id);
     WtToken  selectBySymbol(String symbol);
 
     List<WtToken>  selectAllToken();
     WtToken  selectMainToken();
 
}