PeriodCellReferenceMapper.java 3.58 KB
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package pwc.taxtech.atms.vat.dao;

import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
import pwc.taxtech.atms.MyVatMapper;
import pwc.taxtech.atms.vat.entity.PeriodCellReference;
import pwc.taxtech.atms.vat.entity.PeriodCellReferenceExample;
import pwc.taxtech.atms.vat.entity.PeriodCellReferenceKey;

@Mapper
public interface PeriodCellReferenceMapper extends MyVatMapper {
    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
16
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
17 18 19 20 21 22 23
     *
     * @mbg.generated
     */
    long countByExample(PeriodCellReferenceExample example);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
24
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
25 26 27 28 29 30 31
     *
     * @mbg.generated
     */
    int deleteByExample(PeriodCellReferenceExample example);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
32
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
33 34 35 36 37 38 39
     *
     * @mbg.generated
     */
    int deleteByPrimaryKey(PeriodCellReferenceKey key);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
40
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
41 42 43 44 45 46 47
     *
     * @mbg.generated
     */
    int insert(PeriodCellReference record);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
48
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
49 50 51 52 53 54 55
     *
     * @mbg.generated
     */
    int insertSelective(PeriodCellReference record);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
56
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
57 58 59 60 61 62 63
     *
     * @mbg.generated
     */
    List<PeriodCellReference> selectByExampleWithRowbounds(PeriodCellReferenceExample example, RowBounds rowBounds);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
64
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
65 66 67 68 69 70 71
     *
     * @mbg.generated
     */
    List<PeriodCellReference> selectByExample(PeriodCellReferenceExample example);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
72
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
73 74 75 76 77 78 79
     *
     * @mbg.generated
     */
    PeriodCellReference selectByPrimaryKey(PeriodCellReferenceKey key);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
80
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
81 82 83 84 85 86 87
     *
     * @mbg.generated
     */
    int updateByExampleSelective(@Param("record") PeriodCellReference record, @Param("example") PeriodCellReferenceExample example);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
88
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
89 90 91 92 93 94 95
     *
     * @mbg.generated
     */
    int updateByExample(@Param("record") PeriodCellReference record, @Param("example") PeriodCellReferenceExample example);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
96
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
97 98 99 100 101 102 103
     *
     * @mbg.generated
     */
    int updateByPrimaryKeySelective(PeriodCellReference record);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
104
     * This method corresponds to the database table TAX_PROJECT.PERIOD_CELL_REFERENCE
frank.xa.zhang's avatar
frank.xa.zhang committed
105 106 107 108 109
     *
     * @mbg.generated
     */
    int updateByPrimaryKey(PeriodCellReference record);
}