Commit 91343675 authored by gary's avatar gary

tb_final

parent 6452bee7
......@@ -41,7 +41,12 @@
<property name="rootInterface" value="pwc.taxtech.atms.MyVatMapper" />
</javaClientGenerator>
<table tableName="certified_invoices_list" domainObjectName="CertifiedInvoicesList">
<table tableName="trial_balance_final" domainObjectName="TrialBalanceFinal">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<!--<table tableName="certified_invoices_list" domainObjectName="CertifiedInvoicesList">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
......@@ -51,7 +56,7 @@
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<!--<table tableName="revenue_config" domainObjectName="RevenueConfig">
<table tableName="revenue_config" domainObjectName="RevenueConfig">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="account_type" javaType="java.lang.Integer" jdbcType="TINYINT"/>
......
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.TrialBalance;
import pwc.taxtech.atms.vat.entity.TrialBalanceExample;
@Mapper
public interface TrialBalanceFinalMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
long countByExample(TrialBalanceExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
int deleteByExample(TrialBalanceExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
int deleteByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
int insert(TrialBalance record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
int insertSelective(TrialBalance record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
List<TrialBalance> selectByExampleWithRowbounds(TrialBalanceExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
List<TrialBalance> selectByExample(TrialBalanceExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
TrialBalance selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") TrialBalance record, @Param("example") TrialBalanceExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
int updateByExample(@Param("record") TrialBalance record, @Param("example") TrialBalanceExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(TrialBalance record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table trial_balance_final
*
* @mbg.generated
*/
int updateByPrimaryKey(TrialBalance record);
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment