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

Merge branch 'dev' into dev_eddie

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