工业级运维app手机api
沈斌
2017-10-25 c212d4a32be33f173a1f4a58310349e98860c8d2
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
30
package com.moral.monitor.dao;
 
import com.moral.monitor.entity.AccountEntity;
import com.moral.monitor.entity.AccountEntityExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
 
public interface AccountEntityMapper {
    int countByExample(AccountEntityExample example);
 
    int deleteByExample(AccountEntityExample example);
 
    int deleteByPrimaryKey(Integer id);
 
    int insert(AccountEntity record);
 
    int insertSelective(AccountEntity record);
 
    List<AccountEntity> selectByExample(AccountEntityExample example);
 
    AccountEntity selectByPrimaryKey(Integer id);
 
    int updateByExampleSelective(@Param("record") AccountEntity record, @Param("example") AccountEntityExample example);
 
    int updateByExample(@Param("record") AccountEntity record, @Param("example") AccountEntityExample example);
 
    int updateByPrimaryKeySelective(AccountEntity record);
 
    int updateByPrimaryKey(AccountEntity record);
}