Commit a42ec78c authored by eddie.woo's avatar eddie.woo

Merge branch 'dev' into dev_eddie

parents 09c53c7c f959282c
......@@ -125,7 +125,7 @@
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="EnterpriseAccount" domainObjectName="EnterpriseAccount">
<table tableName="EnterpriseAccount" domainObjectName="VatEnterpriseAccount">
<property name="useActualColumnNames" value="true" />
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
......@@ -219,7 +219,7 @@
<columnOverride column="Comment" javaType="java.lang.String" jdbcType="VARCHAR"/>
</table>
<table tableName="OperationLog" domainObjectName="OperationLog">
<table tableName="OperationLog" domainObjectName="VatOperationLog">
<property name="useActualColumnNames" value="true" />
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="OperationObject" javaType="java.lang.String" jdbcType="VARCHAR"/>
......@@ -302,7 +302,7 @@
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="StandardAccount" domainObjectName="StandardAccount">
<table tableName="StandardAccount" domainObjectName="VatStandardAccount">
<property name="useActualColumnNames" value="true" />
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
......
......@@ -5,18 +5,18 @@ 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.EnterpriseAccount;
import pwc.taxtech.atms.vatEntitiy.EnterpriseAccountExample;
import pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccount;
import pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccountExample;
@Mapper
public interface EnterpriseAccountMapper extends MyVatMapper {
public interface VatEnterpriseAccountMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
long countByExample(EnterpriseAccountExample example);
long countByExample(VatEnterpriseAccountExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -24,7 +24,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int deleteByExample(EnterpriseAccountExample example);
int deleteByExample(VatEnterpriseAccountExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -40,7 +40,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int insert(EnterpriseAccount record);
int insert(VatEnterpriseAccount record);
/**
* This method was generated by MyBatis Generator.
......@@ -48,7 +48,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int insertSelective(EnterpriseAccount record);
int insertSelective(VatEnterpriseAccount record);
/**
* This method was generated by MyBatis Generator.
......@@ -56,7 +56,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
List<EnterpriseAccount> selectByExampleWithRowbounds(EnterpriseAccountExample example, RowBounds rowBounds);
List<VatEnterpriseAccount> selectByExampleWithRowbounds(VatEnterpriseAccountExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
......@@ -64,7 +64,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
List<EnterpriseAccount> selectByExample(EnterpriseAccountExample example);
List<VatEnterpriseAccount> selectByExample(VatEnterpriseAccountExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -72,7 +72,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
EnterpriseAccount selectByPrimaryKey(String ID);
VatEnterpriseAccount selectByPrimaryKey(String ID);
/**
* This method was generated by MyBatis Generator.
......@@ -80,7 +80,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") EnterpriseAccount record, @Param("example") EnterpriseAccountExample example);
int updateByExampleSelective(@Param("record") VatEnterpriseAccount record, @Param("example") VatEnterpriseAccountExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") EnterpriseAccount record, @Param("example") EnterpriseAccountExample example);
int updateByExample(@Param("record") VatEnterpriseAccount record, @Param("example") VatEnterpriseAccountExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(EnterpriseAccount record);
int updateByPrimaryKeySelective(VatEnterpriseAccount record);
/**
* This method was generated by MyBatis Generator.
......@@ -104,5 +104,5 @@ public interface EnterpriseAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(EnterpriseAccount record);
int updateByPrimaryKey(VatEnterpriseAccount record);
}
\ No newline at end of file
......@@ -5,18 +5,18 @@ 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.OperationLog;
import pwc.taxtech.atms.vatEntitiy.OperationLogExample;
import pwc.taxtech.atms.vatEntitiy.VatOperationLog;
import pwc.taxtech.atms.vatEntitiy.VatOperationLogExample;
@Mapper
public interface OperationLogMapper extends MyVatMapper {
public interface VatOperationLogMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
long countByExample(OperationLogExample example);
long countByExample(VatOperationLogExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -24,7 +24,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int deleteByExample(OperationLogExample example);
int deleteByExample(VatOperationLogExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -40,7 +40,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int insert(OperationLog record);
int insert(VatOperationLog record);
/**
* This method was generated by MyBatis Generator.
......@@ -48,7 +48,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int insertSelective(OperationLog record);
int insertSelective(VatOperationLog record);
/**
* This method was generated by MyBatis Generator.
......@@ -56,7 +56,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
List<OperationLog> selectByExampleWithRowbounds(OperationLogExample example, RowBounds rowBounds);
List<VatOperationLog> selectByExampleWithRowbounds(VatOperationLogExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
......@@ -64,7 +64,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
List<OperationLog> selectByExample(OperationLogExample example);
List<VatOperationLog> selectByExample(VatOperationLogExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -72,7 +72,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
OperationLog selectByPrimaryKey(String ID);
VatOperationLog selectByPrimaryKey(String ID);
/**
* This method was generated by MyBatis Generator.
......@@ -80,7 +80,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") OperationLog record, @Param("example") OperationLogExample example);
int updateByExampleSelective(@Param("record") VatOperationLog record, @Param("example") VatOperationLogExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") OperationLog record, @Param("example") OperationLogExample example);
int updateByExample(@Param("record") VatOperationLog record, @Param("example") VatOperationLogExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(OperationLog record);
int updateByPrimaryKeySelective(VatOperationLog record);
/**
* This method was generated by MyBatis Generator.
......@@ -104,5 +104,5 @@ public interface OperationLogMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(OperationLog record);
int updateByPrimaryKey(VatOperationLog record);
}
\ No newline at end of file
......@@ -5,18 +5,18 @@ 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.StandardAccount;
import pwc.taxtech.atms.vatEntitiy.StandardAccountExample;
import pwc.taxtech.atms.vatEntitiy.VatStandardAccount;
import pwc.taxtech.atms.vatEntitiy.VatStandardAccountExample;
@Mapper
public interface StandardAccountMapper extends MyVatMapper {
public interface VatStandardAccountMapper extends MyVatMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
long countByExample(StandardAccountExample example);
long countByExample(VatStandardAccountExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -24,7 +24,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int deleteByExample(StandardAccountExample example);
int deleteByExample(VatStandardAccountExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -40,7 +40,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int insert(StandardAccount record);
int insert(VatStandardAccount record);
/**
* This method was generated by MyBatis Generator.
......@@ -48,7 +48,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int insertSelective(StandardAccount record);
int insertSelective(VatStandardAccount record);
/**
* This method was generated by MyBatis Generator.
......@@ -56,7 +56,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
List<StandardAccount> selectByExampleWithRowbounds(StandardAccountExample example, RowBounds rowBounds);
List<VatStandardAccount> selectByExampleWithRowbounds(VatStandardAccountExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
......@@ -64,7 +64,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
List<StandardAccount> selectByExample(StandardAccountExample example);
List<VatStandardAccount> selectByExample(VatStandardAccountExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -72,7 +72,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
StandardAccount selectByPrimaryKey(String ID);
VatStandardAccount selectByPrimaryKey(String ID);
/**
* This method was generated by MyBatis Generator.
......@@ -80,7 +80,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") StandardAccount record, @Param("example") StandardAccountExample example);
int updateByExampleSelective(@Param("record") VatStandardAccount record, @Param("example") VatStandardAccountExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") StandardAccount record, @Param("example") StandardAccountExample example);
int updateByExample(@Param("record") VatStandardAccount record, @Param("example") VatStandardAccountExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(StandardAccount record);
int updateByPrimaryKeySelective(VatStandardAccount record);
/**
* This method was generated by MyBatis Generator.
......@@ -104,5 +104,5 @@ public interface StandardAccountMapper extends MyVatMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(StandardAccount record);
int updateByPrimaryKey(VatStandardAccount record);
}
\ No newline at end of file
......@@ -10,7 +10,7 @@ import java.util.Date;
*
* @mbg.generated do_not_delete_during_merge
*/
public class EnterpriseAccount implements Serializable {
public class VatEnterpriseAccount implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
......
......@@ -4,7 +4,7 @@ import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class EnterpriseAccountExample {
public class VatEnterpriseAccountExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table EnterpriseAccount
......@@ -35,7 +35,7 @@ public class EnterpriseAccountExample {
*
* @mbg.generated
*/
public EnterpriseAccountExample() {
public VatEnterpriseAccountExample() {
oredCriteria = new ArrayList<Criteria>();
}
......
......@@ -10,7 +10,7 @@ import java.util.Date;
*
* @mbg.generated do_not_delete_during_merge
*/
public class OperationLog implements Serializable {
public class VatOperationLog implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
......
......@@ -4,7 +4,7 @@ import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class OperationLogExample {
public class VatOperationLogExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table OperationLog
......@@ -35,7 +35,7 @@ public class OperationLogExample {
*
* @mbg.generated
*/
public OperationLogExample() {
public VatOperationLogExample() {
oredCriteria = new ArrayList<Criteria>();
}
......
......@@ -9,7 +9,7 @@ import java.io.Serializable;
*
* @mbg.generated do_not_delete_during_merge
*/
public class StandardAccount implements Serializable {
public class VatStandardAccount implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
......
......@@ -3,7 +3,7 @@ package pwc.taxtech.atms.vatEntitiy;
import java.util.ArrayList;
import java.util.List;
public class StandardAccountExample {
public class VatStandardAccountExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table StandardAccount
......@@ -34,7 +34,7 @@ public class StandardAccountExample {
*
* @mbg.generated
*/
public StandardAccountExample() {
public VatStandardAccountExample() {
oredCriteria = new ArrayList<Criteria>();
}
......
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pwc.taxtech.atms.vatDao.EnterpriseAccountMapper">
<resultMap id="BaseResultMap" type="pwc.taxtech.atms.vatEntitiy.EnterpriseAccount">
<mapper namespace="pwc.taxtech.atms.vatDao.VatEnterpriseAccountMapper">
<resultMap id="BaseResultMap" type="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -102,7 +102,7 @@
IsLeaf, IsActive, EnglishName, StdCode, EnterpriseAccountSetID, IsDummy, IsInVoucher,
CreatorID, UpdatorID, CreateTime, UpdateTime
</sql>
<select id="selectByExample" parameterType="pwc.taxtech.atms.vatEntitiy.EnterpriseAccountExample" resultMap="BaseResultMap">
<select id="selectByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccountExample" resultMap="BaseResultMap">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -138,7 +138,7 @@
delete from EnterpriseAccount
where ID = #{ID,jdbcType=VARCHAR}
</delete>
<delete id="deleteByExample" parameterType="pwc.taxtech.atms.vatEntitiy.EnterpriseAccountExample">
<delete id="deleteByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccountExample">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -148,7 +148,7 @@
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" parameterType="pwc.taxtech.atms.vatEntitiy.EnterpriseAccount">
<insert id="insert" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -168,7 +168,7 @@
#{isInVoucher,jdbcType=INTEGER}, #{creatorID,jdbcType=VARCHAR}, #{updatorID,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP})
</insert>
<insert id="insertSelective" parameterType="pwc.taxtech.atms.vatEntitiy.EnterpriseAccount">
<insert id="insertSelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -299,7 +299,7 @@
</if>
</trim>
</insert>
<select id="countByExample" parameterType="pwc.taxtech.atms.vatEntitiy.EnterpriseAccountExample" resultType="java.lang.Long">
<select id="countByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccountExample" resultType="java.lang.Long">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -411,7 +411,7 @@
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="pwc.taxtech.atms.vatEntitiy.EnterpriseAccount">
<update id="updateByPrimaryKeySelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -478,7 +478,7 @@
</set>
where ID = #{ID,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="pwc.taxtech.atms.vatEntitiy.EnterpriseAccount">
<update id="updateByPrimaryKey" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -505,7 +505,7 @@
UpdateTime = #{updateTime,jdbcType=TIMESTAMP}
where ID = #{ID,jdbcType=VARCHAR}
</update>
<select id="selectByExampleWithRowbounds" parameterType="pwc.taxtech.atms.vatEntitiy.EnterpriseAccountExample" resultMap="BaseResultMap">
<select id="selectByExampleWithRowbounds" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccountExample" resultMap="BaseResultMap">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pwc.taxtech.atms.vatDao.OperationLogMapper">
<resultMap id="BaseResultMap" type="pwc.taxtech.atms.vatEntitiy.OperationLog">
<mapper namespace="pwc.taxtech.atms.vatDao.VatOperationLogMapper">
<resultMap id="BaseResultMap" type="pwc.taxtech.atms.vatEntitiy.VatOperationLog">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -96,7 +96,7 @@
ID, OperationName, ModuleID, OperationObject, OperationType, OperationContent, OriginalState,
UpdateState, CreatorID, Comment, CreateTime, UpdateTime, IP, Period, ServiceType
</sql>
<select id="selectByExample" parameterType="pwc.taxtech.atms.vatEntitiy.OperationLogExample" resultMap="BaseResultMap">
<select id="selectByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLogExample" resultMap="BaseResultMap">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -132,7 +132,7 @@
delete from OperationLog
where ID = #{ID,jdbcType=VARCHAR}
</delete>
<delete id="deleteByExample" parameterType="pwc.taxtech.atms.vatEntitiy.OperationLogExample">
<delete id="deleteByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLogExample">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -142,7 +142,7 @@
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" parameterType="pwc.taxtech.atms.vatEntitiy.OperationLog">
<insert id="insert" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLog">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -160,7 +160,7 @@
#{IP,jdbcType=VARCHAR}, #{period,jdbcType=INTEGER}, #{serviceType,jdbcType=INTEGER}
)
</insert>
<insert id="insertSelective" parameterType="pwc.taxtech.atms.vatEntitiy.OperationLog">
<insert id="insertSelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLog">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -261,7 +261,7 @@
</if>
</trim>
</insert>
<select id="countByExample" parameterType="pwc.taxtech.atms.vatEntitiy.OperationLogExample" resultType="java.lang.Long">
<select id="countByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLogExample" resultType="java.lang.Long">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -353,7 +353,7 @@
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="pwc.taxtech.atms.vatEntitiy.OperationLog">
<update id="updateByPrimaryKeySelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLog">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -405,7 +405,7 @@
</set>
where ID = #{ID,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="pwc.taxtech.atms.vatEntitiy.OperationLog">
<update id="updateByPrimaryKey" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLog">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -427,7 +427,7 @@
ServiceType = #{serviceType,jdbcType=INTEGER}
where ID = #{ID,jdbcType=VARCHAR}
</update>
<select id="selectByExampleWithRowbounds" parameterType="pwc.taxtech.atms.vatEntitiy.OperationLogExample" resultMap="BaseResultMap">
<select id="selectByExampleWithRowbounds" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLogExample" resultMap="BaseResultMap">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="pwc.taxtech.atms.vatDao.StandardAccountMapper">
<resultMap id="BaseResultMap" type="pwc.taxtech.atms.vatEntitiy.StandardAccount">
<mapper namespace="pwc.taxtech.atms.vatDao.VatStandardAccountMapper">
<resultMap id="BaseResultMap" type="pwc.taxtech.atms.vatEntitiy.VatStandardAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -95,7 +95,7 @@
ID, Code, Name, ParentCode, FullName, AcctProp, SubProp, AcctLevel, Direction, IsLeaf,
RuleType, IsActive, EnglishName, IndustryID
</sql>
<select id="selectByExample" parameterType="pwc.taxtech.atms.vatEntitiy.StandardAccountExample" resultMap="BaseResultMap">
<select id="selectByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccountExample" resultMap="BaseResultMap">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -131,7 +131,7 @@
delete from StandardAccount
where ID = #{ID,jdbcType=VARCHAR}
</delete>
<delete id="deleteByExample" parameterType="pwc.taxtech.atms.vatEntitiy.StandardAccountExample">
<delete id="deleteByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccountExample">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -141,7 +141,7 @@
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" parameterType="pwc.taxtech.atms.vatEntitiy.StandardAccount">
<insert id="insert" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -157,7 +157,7 @@
#{isLeaf,jdbcType=SMALLINT}, #{ruleType,jdbcType=INTEGER}, #{isActive,jdbcType=SMALLINT},
#{englishName,jdbcType=VARCHAR}, #{industryID,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="pwc.taxtech.atms.vatEntitiy.StandardAccount">
<insert id="insertSelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -252,7 +252,7 @@
</if>
</trim>
</insert>
<select id="countByExample" parameterType="pwc.taxtech.atms.vatEntitiy.StandardAccountExample" resultType="java.lang.Long">
<select id="countByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccountExample" resultType="java.lang.Long">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -340,7 +340,7 @@
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="pwc.taxtech.atms.vatEntitiy.StandardAccount">
<update id="updateByPrimaryKeySelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -389,7 +389,7 @@
</set>
where ID = #{ID,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="pwc.taxtech.atms.vatEntitiy.StandardAccount">
<update id="updateByPrimaryKey" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......@@ -410,7 +410,7 @@
IndustryID = #{industryID,jdbcType=VARCHAR}
where ID = #{ID,jdbcType=VARCHAR}
</update>
<select id="selectByExampleWithRowbounds" parameterType="pwc.taxtech.atms.vatEntitiy.StandardAccountExample" resultMap="BaseResultMap">
<select id="selectByExampleWithRowbounds" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccountExample" resultMap="BaseResultMap">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
......
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