9240078b
xiejianpeng
生成数据库
|
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.zteits.oa.report.mapper;
import com.zteits.oa.report.domain.AsraRole;
import com.zteits.oa.report.domain.AsraRoleExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface AsraRoleMapper {
long countByExample(AsraRoleExample example);
int deleteByExample(AsraRoleExample example);
int deleteByPrimaryKey(Long id);
int insert(AsraRole record);
int insertSelective(AsraRole record);
List<AsraRole> selectByExample(AsraRoleExample example);
AsraRole selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") AsraRole record, @Param("example") AsraRoleExample example);
int updateByExample(@Param("record") AsraRole record, @Param("example") AsraRoleExample example);
int updateByPrimaryKeySelective(AsraRole record);
int updateByPrimaryKey(AsraRole record);
}
|