Commit 692c505e authored by frank.xa.zhang's avatar frank.xa.zhang

rename name of duplicated table names

parent b282bcd5
...@@ -125,7 +125,7 @@ ...@@ -125,7 +125,7 @@
<property name="ignoreQualifiersAtRuntime" value="true"/> <property name="ignoreQualifiersAtRuntime" value="true"/>
</table> </table>
<table tableName="EnterpriseAccount" domainObjectName="EnterpriseAccount"> <table tableName="EnterpriseAccount" domainObjectName="VatEnterpriseAccount">
<property name="useActualColumnNames" value="true" /> <property name="useActualColumnNames" value="true" />
<property name="ignoreQualifiersAtRuntime" value="true"/> <property name="ignoreQualifiersAtRuntime" value="true"/>
</table> </table>
...@@ -219,7 +219,7 @@ ...@@ -219,7 +219,7 @@
<columnOverride column="Comment" javaType="java.lang.String" jdbcType="VARCHAR"/> <columnOverride column="Comment" javaType="java.lang.String" jdbcType="VARCHAR"/>
</table> </table>
<table tableName="OperationLog" domainObjectName="OperationLog"> <table tableName="OperationLog" domainObjectName="VatOperationLog">
<property name="useActualColumnNames" value="true" /> <property name="useActualColumnNames" value="true" />
<property name="ignoreQualifiersAtRuntime" value="true"/> <property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="OperationObject" javaType="java.lang.String" jdbcType="VARCHAR"/> <columnOverride column="OperationObject" javaType="java.lang.String" jdbcType="VARCHAR"/>
...@@ -302,7 +302,7 @@ ...@@ -302,7 +302,7 @@
<property name="ignoreQualifiersAtRuntime" value="true"/> <property name="ignoreQualifiersAtRuntime" value="true"/>
</table> </table>
<table tableName="StandardAccount" domainObjectName="StandardAccount"> <table tableName="StandardAccount" domainObjectName="VatStandardAccount">
<property name="useActualColumnNames" value="true" /> <property name="useActualColumnNames" value="true" />
<property name="ignoreQualifiersAtRuntime" value="true"/> <property name="ignoreQualifiersAtRuntime" value="true"/>
</table> </table>
......
package pwc.taxtech.atms.vatDao;
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.vatEntitiy.VatEnterpriseAccount;
import pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccountExample;
@Mapper
public interface VatEnterpriseAccountMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
long countByExample(VatEnterpriseAccountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
int deleteByExample(VatEnterpriseAccountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
int deleteByPrimaryKey(String ID);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
int insert(VatEnterpriseAccount record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
int insertSelective(VatEnterpriseAccount record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
List<VatEnterpriseAccount> selectByExampleWithRowbounds(VatEnterpriseAccountExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
List<VatEnterpriseAccount> selectByExample(VatEnterpriseAccountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
VatEnterpriseAccount selectByPrimaryKey(String ID);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") VatEnterpriseAccount record, @Param("example") VatEnterpriseAccountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
int updateByExample(@Param("record") VatEnterpriseAccount record, @Param("example") VatEnterpriseAccountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(VatEnterpriseAccount record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
int updateByPrimaryKey(VatEnterpriseAccount record);
}
\ No newline at end of file
package pwc.taxtech.atms.vatDao;
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.vatEntitiy.VatOperationLog;
import pwc.taxtech.atms.vatEntitiy.VatOperationLogExample;
@Mapper
public interface VatOperationLogMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
long countByExample(VatOperationLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
int deleteByExample(VatOperationLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
int deleteByPrimaryKey(String ID);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
int insert(VatOperationLog record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
int insertSelective(VatOperationLog record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
List<VatOperationLog> selectByExampleWithRowbounds(VatOperationLogExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
List<VatOperationLog> selectByExample(VatOperationLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
VatOperationLog selectByPrimaryKey(String ID);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") VatOperationLog record, @Param("example") VatOperationLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
int updateByExample(@Param("record") VatOperationLog record, @Param("example") VatOperationLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(VatOperationLog record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
int updateByPrimaryKey(VatOperationLog record);
}
\ No newline at end of file
package pwc.taxtech.atms.vatDao;
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.vatEntitiy.VatStandardAccount;
import pwc.taxtech.atms.vatEntitiy.VatStandardAccountExample;
@Mapper
public interface VatStandardAccountMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
long countByExample(VatStandardAccountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
int deleteByExample(VatStandardAccountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
int deleteByPrimaryKey(String ID);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
int insert(VatStandardAccount record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
int insertSelective(VatStandardAccount record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
List<VatStandardAccount> selectByExampleWithRowbounds(VatStandardAccountExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
List<VatStandardAccount> selectByExample(VatStandardAccountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
VatStandardAccount selectByPrimaryKey(String ID);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") VatStandardAccount record, @Param("example") VatStandardAccountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
int updateByExample(@Param("record") VatStandardAccount record, @Param("example") VatStandardAccountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(VatStandardAccount record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
int updateByPrimaryKey(VatStandardAccount 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