BalanceStdManualMapper.java 3.75 KB
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1 2 3 4 5 6 7 8 9
package pwc.taxtech.atms.vat.dao;

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.BalanceStdManual;
import pwc.taxtech.atms.vat.entity.BalanceStdManualExample;

10 11
import java.util.List;

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

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

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

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

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

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

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

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

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

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

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

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

110 111
    BalanceStdManual selectOneWithAccountCodeAndDBName(@Param("accountCode") String accountCode, @Param("dbName") String dbName,
                                                       @Param("period") int period);
112

113
    BalanceStdManual selectOneWithAccountCode(@Param("accountCode") String accountCode, @Param("period") int period);
frank.xa.zhang's avatar
frank.xa.zhang committed
114
}