cc51d294
王富生
最初版本提交
|
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.AsraOp;
import com.zteits.oa.report.domain.AsraOpExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface AsraOpMapper {
long countByExample(AsraOpExample example);
int deleteByExample(AsraOpExample example);
int deleteByPrimaryKey(Long id);
int insert(AsraOp record);
int insertSelective(AsraOp record);
List<AsraOp> selectByExample(AsraOpExample example);
AsraOp selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") AsraOp record, @Param("example") AsraOpExample example);
int updateByExample(@Param("record") AsraOp record, @Param("example") AsraOpExample example);
int updateByPrimaryKeySelective(AsraOp record);
int updateByPrimaryKey(AsraOp record);
}
|