CellDataMapper.java 3.16 KB
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1
package pwc.taxtech.atms.vat.dao;
2 3 4 5 6

import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
import pwc.taxtech.atms.MyVatMapper;
frank.xa.zhang's avatar
frank.xa.zhang committed
7 8
import pwc.taxtech.atms.vat.entity.CellData;
import pwc.taxtech.atms.vat.entity.CellDataExample;
9

10 11
import java.util.List;

12 13 14 15
@Mapper
public interface CellDataMapper extends MyVatMapper {
    /**
     * This method was generated by MyBatis Generator.
16
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
17 18 19 20 21 22 23
     *
     * @mbg.generated
     */
    long countByExample(CellDataExample example);

    /**
     * This method was generated by MyBatis Generator.
24
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
25 26 27 28 29 30 31
     *
     * @mbg.generated
     */
    int deleteByExample(CellDataExample example);

    /**
     * This method was generated by MyBatis Generator.
32
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
33 34 35
     *
     * @mbg.generated
     */
36
    int deleteByPrimaryKey(Long id);
37 38 39

    /**
     * This method was generated by MyBatis Generator.
40
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
41 42 43 44 45 46 47
     *
     * @mbg.generated
     */
    int insert(CellData record);

    /**
     * This method was generated by MyBatis Generator.
48
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
49 50 51 52 53 54 55
     *
     * @mbg.generated
     */
    int insertSelective(CellData record);

    /**
     * This method was generated by MyBatis Generator.
56
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
57 58 59 60 61 62 63
     *
     * @mbg.generated
     */
    List<CellData> selectByExampleWithRowbounds(CellDataExample example, RowBounds rowBounds);

    /**
     * This method was generated by MyBatis Generator.
64
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
65 66 67 68 69 70 71
     *
     * @mbg.generated
     */
    List<CellData> selectByExample(CellDataExample example);

    /**
     * This method was generated by MyBatis Generator.
72
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
73 74 75
     *
     * @mbg.generated
     */
76
    CellData selectByPrimaryKey(Long id);
77 78 79

    /**
     * This method was generated by MyBatis Generator.
80
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
81 82 83 84 85 86 87
     *
     * @mbg.generated
     */
    int updateByExampleSelective(@Param("record") CellData record, @Param("example") CellDataExample example);

    /**
     * This method was generated by MyBatis Generator.
88
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
89 90 91 92 93 94 95
     *
     * @mbg.generated
     */
    int updateByExample(@Param("record") CellData record, @Param("example") CellDataExample example);

    /**
     * This method was generated by MyBatis Generator.
96
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
97 98 99 100 101 102 103
     *
     * @mbg.generated
     */
    int updateByPrimaryKeySelective(CellData record);

    /**
     * This method was generated by MyBatis Generator.
104
     * This method corresponds to the database table TAX_PROJECT. CELL_DATA
105 106 107 108
     *
     * @mbg.generated
     */
    int updateByPrimaryKey(CellData record);
109

110
}