Blame view

src/main/java/com/zteits/oa/report/mapper/AsraDailyMapper.java 1.11 KB
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
31
32
33
34
35
36
  package com.zteits.oa.report.mapper;
  
  import com.zteits.oa.report.domain.AsraDaily;
  import com.zteits.oa.report.domain.AsraDailyExample;
  import java.util.List;
  import org.apache.ibatis.annotations.Param;
  
  public interface AsraDailyMapper {
      long countByExample(AsraDailyExample example);
  
      int deleteByExample(AsraDailyExample example);
  
      int deleteByPrimaryKey(Long id);
  
      int insert(AsraDaily record);
  
      int insertSelective(AsraDaily record);
  
      List<AsraDaily> selectByExampleWithBLOBs(AsraDailyExample example);
  
      List<AsraDaily> selectByExample(AsraDailyExample example);
  
      AsraDaily selectByPrimaryKey(Long id);
  
      int updateByExampleSelective(@Param("record") AsraDaily record, @Param("example") AsraDailyExample example);
  
      int updateByExampleWithBLOBs(@Param("record") AsraDaily record, @Param("example") AsraDailyExample example);
  
      int updateByExample(@Param("record") AsraDaily record, @Param("example") AsraDailyExample example);
  
      int updateByPrimaryKeySelective(AsraDaily record);
  
      int updateByPrimaryKeyWithBLOBs(AsraDaily record);
  
      int updateByPrimaryKey(AsraDaily record);
  }