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.AsraOpRelations;
import com.zteits.oa.report.domain.AsraOpRelationsExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface AsraOpRelationsMapper {
long countByExample(AsraOpRelationsExample example);
int deleteByExample(AsraOpRelationsExample example);
int deleteByPrimaryKey(Long id);
int insert(AsraOpRelations record);
int insertSelective(AsraOpRelations record);
List<AsraOpRelations> selectByExample(AsraOpRelationsExample example);
AsraOpRelations selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") AsraOpRelations record, @Param("example") AsraOpRelationsExample example);
int updateByExample(@Param("record") AsraOpRelations record, @Param("example") AsraOpRelationsExample example);
int updateByPrimaryKeySelective(AsraOpRelations record);
int updateByPrimaryKey(AsraOpRelations record);
}
|