Blame view

src/main/java/com/objecteye/mapper/SyPrivilegeMapper.java 908 Bytes
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
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
31
  package com.objecteye.mapper;
  
  import com.objecteye.entity.SyPrivilege;
  import com.objecteye.entity.SyPrivilegeExample;
  import org.apache.ibatis.annotations.Param;
  
  import java.util.List;
  
  public interface SyPrivilegeMapper {
      int countByExample(SyPrivilegeExample example);
  
      int deleteByExample(SyPrivilegeExample example);
  
      int deleteByPrimaryKey(Integer id);
  
      int insert(SyPrivilege record);
  
      int insertSelective(SyPrivilege record);
  
      List<SyPrivilege> selectByExample(SyPrivilegeExample example);
  
      SyPrivilege selectByPrimaryKey(Integer id);
  
      int updateByExampleSelective(@Param("record") SyPrivilege record, @Param("example") SyPrivilegeExample example);
  
      int updateByExample(@Param("record") SyPrivilege record, @Param("example") SyPrivilegeExample example);
  
      int updateByPrimaryKeySelective(SyPrivilege record);
  
      int updateByPrimaryKey(SyPrivilege record);
  }