Blame view

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