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

rename name of duplicated table names

parent b282bcd5
......@@ -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>
......
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
package pwc.taxtech.atms.vatEntitiy;
import java.io.Serializable;
import java.util.Date;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table EnterpriseAccount
*
* @mbg.generated do_not_delete_during_merge
*/
public class VatEnterpriseAccount implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.ID
*
* @mbg.generated
*/
private String ID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.AcctCode
*
* @mbg.generated
*/
private String acctCode;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.Name
*
* @mbg.generated
*/
private String name;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.ParentCode
*
* @mbg.generated
*/
private String parentCode;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.FullName
*
* @mbg.generated
*/
private String fullName;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.AcctProp
*
* @mbg.generated
*/
private Integer acctProp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.SubProp
*
* @mbg.generated
*/
private Integer subProp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.AcctLevel
*
* @mbg.generated
*/
private Integer acctLevel;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.Direction
*
* @mbg.generated
*/
private Integer direction;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.IsLeaf
*
* @mbg.generated
*/
private Short isLeaf;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.IsActive
*
* @mbg.generated
*/
private Short isActive;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.EnglishName
*
* @mbg.generated
*/
private String englishName;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.StdCode
*
* @mbg.generated
*/
private String stdCode;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.EnterpriseAccountSetID
*
* @mbg.generated
*/
private String enterpriseAccountSetID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.IsDummy
*
* @mbg.generated
*/
private Integer isDummy;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.IsInVoucher
*
* @mbg.generated
*/
private Integer isInVoucher;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.CreatorID
*
* @mbg.generated
*/
private String creatorID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.UpdatorID
*
* @mbg.generated
*/
private String updatorID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.CreateTime
*
* @mbg.generated
*/
private Date createTime;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column EnterpriseAccount.UpdateTime
*
* @mbg.generated
*/
private Date updateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
private static final long serialVersionUID = 1L;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.ID
*
* @return the value of EnterpriseAccount.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.ID
*
* @param ID the value for EnterpriseAccount.ID
*
* @mbg.generated
*/
public void setID(String ID) {
this.ID = ID == null ? null : ID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.AcctCode
*
* @return the value of EnterpriseAccount.AcctCode
*
* @mbg.generated
*/
public String getAcctCode() {
return acctCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.AcctCode
*
* @param acctCode the value for EnterpriseAccount.AcctCode
*
* @mbg.generated
*/
public void setAcctCode(String acctCode) {
this.acctCode = acctCode == null ? null : acctCode.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.Name
*
* @return the value of EnterpriseAccount.Name
*
* @mbg.generated
*/
public String getName() {
return name;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.Name
*
* @param name the value for EnterpriseAccount.Name
*
* @mbg.generated
*/
public void setName(String name) {
this.name = name == null ? null : name.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.ParentCode
*
* @return the value of EnterpriseAccount.ParentCode
*
* @mbg.generated
*/
public String getParentCode() {
return parentCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.ParentCode
*
* @param parentCode the value for EnterpriseAccount.ParentCode
*
* @mbg.generated
*/
public void setParentCode(String parentCode) {
this.parentCode = parentCode == null ? null : parentCode.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.FullName
*
* @return the value of EnterpriseAccount.FullName
*
* @mbg.generated
*/
public String getFullName() {
return fullName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.FullName
*
* @param fullName the value for EnterpriseAccount.FullName
*
* @mbg.generated
*/
public void setFullName(String fullName) {
this.fullName = fullName == null ? null : fullName.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.AcctProp
*
* @return the value of EnterpriseAccount.AcctProp
*
* @mbg.generated
*/
public Integer getAcctProp() {
return acctProp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.AcctProp
*
* @param acctProp the value for EnterpriseAccount.AcctProp
*
* @mbg.generated
*/
public void setAcctProp(Integer acctProp) {
this.acctProp = acctProp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.SubProp
*
* @return the value of EnterpriseAccount.SubProp
*
* @mbg.generated
*/
public Integer getSubProp() {
return subProp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.SubProp
*
* @param subProp the value for EnterpriseAccount.SubProp
*
* @mbg.generated
*/
public void setSubProp(Integer subProp) {
this.subProp = subProp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.AcctLevel
*
* @return the value of EnterpriseAccount.AcctLevel
*
* @mbg.generated
*/
public Integer getAcctLevel() {
return acctLevel;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.AcctLevel
*
* @param acctLevel the value for EnterpriseAccount.AcctLevel
*
* @mbg.generated
*/
public void setAcctLevel(Integer acctLevel) {
this.acctLevel = acctLevel;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.Direction
*
* @return the value of EnterpriseAccount.Direction
*
* @mbg.generated
*/
public Integer getDirection() {
return direction;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.Direction
*
* @param direction the value for EnterpriseAccount.Direction
*
* @mbg.generated
*/
public void setDirection(Integer direction) {
this.direction = direction;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.IsLeaf
*
* @return the value of EnterpriseAccount.IsLeaf
*
* @mbg.generated
*/
public Short getIsLeaf() {
return isLeaf;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.IsLeaf
*
* @param isLeaf the value for EnterpriseAccount.IsLeaf
*
* @mbg.generated
*/
public void setIsLeaf(Short isLeaf) {
this.isLeaf = isLeaf;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.IsActive
*
* @return the value of EnterpriseAccount.IsActive
*
* @mbg.generated
*/
public Short getIsActive() {
return isActive;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.IsActive
*
* @param isActive the value for EnterpriseAccount.IsActive
*
* @mbg.generated
*/
public void setIsActive(Short isActive) {
this.isActive = isActive;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.EnglishName
*
* @return the value of EnterpriseAccount.EnglishName
*
* @mbg.generated
*/
public String getEnglishName() {
return englishName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.EnglishName
*
* @param englishName the value for EnterpriseAccount.EnglishName
*
* @mbg.generated
*/
public void setEnglishName(String englishName) {
this.englishName = englishName == null ? null : englishName.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.StdCode
*
* @return the value of EnterpriseAccount.StdCode
*
* @mbg.generated
*/
public String getStdCode() {
return stdCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.StdCode
*
* @param stdCode the value for EnterpriseAccount.StdCode
*
* @mbg.generated
*/
public void setStdCode(String stdCode) {
this.stdCode = stdCode == null ? null : stdCode.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.EnterpriseAccountSetID
*
* @return the value of EnterpriseAccount.EnterpriseAccountSetID
*
* @mbg.generated
*/
public String getEnterpriseAccountSetID() {
return enterpriseAccountSetID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.EnterpriseAccountSetID
*
* @param enterpriseAccountSetID the value for EnterpriseAccount.EnterpriseAccountSetID
*
* @mbg.generated
*/
public void setEnterpriseAccountSetID(String enterpriseAccountSetID) {
this.enterpriseAccountSetID = enterpriseAccountSetID == null ? null : enterpriseAccountSetID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.IsDummy
*
* @return the value of EnterpriseAccount.IsDummy
*
* @mbg.generated
*/
public Integer getIsDummy() {
return isDummy;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.IsDummy
*
* @param isDummy the value for EnterpriseAccount.IsDummy
*
* @mbg.generated
*/
public void setIsDummy(Integer isDummy) {
this.isDummy = isDummy;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.IsInVoucher
*
* @return the value of EnterpriseAccount.IsInVoucher
*
* @mbg.generated
*/
public Integer getIsInVoucher() {
return isInVoucher;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.IsInVoucher
*
* @param isInVoucher the value for EnterpriseAccount.IsInVoucher
*
* @mbg.generated
*/
public void setIsInVoucher(Integer isInVoucher) {
this.isInVoucher = isInVoucher;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.CreatorID
*
* @return the value of EnterpriseAccount.CreatorID
*
* @mbg.generated
*/
public String getCreatorID() {
return creatorID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.CreatorID
*
* @param creatorID the value for EnterpriseAccount.CreatorID
*
* @mbg.generated
*/
public void setCreatorID(String creatorID) {
this.creatorID = creatorID == null ? null : creatorID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.UpdatorID
*
* @return the value of EnterpriseAccount.UpdatorID
*
* @mbg.generated
*/
public String getUpdatorID() {
return updatorID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.UpdatorID
*
* @param updatorID the value for EnterpriseAccount.UpdatorID
*
* @mbg.generated
*/
public void setUpdatorID(String updatorID) {
this.updatorID = updatorID == null ? null : updatorID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.CreateTime
*
* @return the value of EnterpriseAccount.CreateTime
*
* @mbg.generated
*/
public Date getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.CreateTime
*
* @param createTime the value for EnterpriseAccount.CreateTime
*
* @mbg.generated
*/
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column EnterpriseAccount.UpdateTime
*
* @return the value of EnterpriseAccount.UpdateTime
*
* @mbg.generated
*/
public Date getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column EnterpriseAccount.UpdateTime
*
* @param updateTime the value for EnterpriseAccount.UpdateTime
*
* @mbg.generated
*/
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", ID=").append(ID);
sb.append(", acctCode=").append(acctCode);
sb.append(", name=").append(name);
sb.append(", parentCode=").append(parentCode);
sb.append(", fullName=").append(fullName);
sb.append(", acctProp=").append(acctProp);
sb.append(", subProp=").append(subProp);
sb.append(", acctLevel=").append(acctLevel);
sb.append(", direction=").append(direction);
sb.append(", isLeaf=").append(isLeaf);
sb.append(", isActive=").append(isActive);
sb.append(", englishName=").append(englishName);
sb.append(", stdCode=").append(stdCode);
sb.append(", enterpriseAccountSetID=").append(enterpriseAccountSetID);
sb.append(", isDummy=").append(isDummy);
sb.append(", isInVoucher=").append(isInVoucher);
sb.append(", creatorID=").append(creatorID);
sb.append(", updatorID=").append(updatorID);
sb.append(", createTime=").append(createTime);
sb.append(", updateTime=").append(updateTime);
sb.append("]");
return sb.toString();
}
}
\ No newline at end of file
package pwc.taxtech.atms.vatEntitiy;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class VatEnterpriseAccountExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
public VatEnterpriseAccountExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIDIsNull() {
addCriterion("ID is null");
return (Criteria) this;
}
public Criteria andIDIsNotNull() {
addCriterion("ID is not null");
return (Criteria) this;
}
public Criteria andIDEqualTo(String value) {
addCriterion("ID =", value, "ID");
return (Criteria) this;
}
public Criteria andIDNotEqualTo(String value) {
addCriterion("ID <>", value, "ID");
return (Criteria) this;
}
public Criteria andIDGreaterThan(String value) {
addCriterion("ID >", value, "ID");
return (Criteria) this;
}
public Criteria andIDGreaterThanOrEqualTo(String value) {
addCriterion("ID >=", value, "ID");
return (Criteria) this;
}
public Criteria andIDLessThan(String value) {
addCriterion("ID <", value, "ID");
return (Criteria) this;
}
public Criteria andIDLessThanOrEqualTo(String value) {
addCriterion("ID <=", value, "ID");
return (Criteria) this;
}
public Criteria andIDLike(String value) {
addCriterion("ID like", value, "ID");
return (Criteria) this;
}
public Criteria andIDNotLike(String value) {
addCriterion("ID not like", value, "ID");
return (Criteria) this;
}
public Criteria andIDIn(List<String> values) {
addCriterion("ID in", values, "ID");
return (Criteria) this;
}
public Criteria andIDNotIn(List<String> values) {
addCriterion("ID not in", values, "ID");
return (Criteria) this;
}
public Criteria andIDBetween(String value1, String value2) {
addCriterion("ID between", value1, value2, "ID");
return (Criteria) this;
}
public Criteria andIDNotBetween(String value1, String value2) {
addCriterion("ID not between", value1, value2, "ID");
return (Criteria) this;
}
public Criteria andAcctCodeIsNull() {
addCriterion("AcctCode is null");
return (Criteria) this;
}
public Criteria andAcctCodeIsNotNull() {
addCriterion("AcctCode is not null");
return (Criteria) this;
}
public Criteria andAcctCodeEqualTo(String value) {
addCriterion("AcctCode =", value, "acctCode");
return (Criteria) this;
}
public Criteria andAcctCodeNotEqualTo(String value) {
addCriterion("AcctCode <>", value, "acctCode");
return (Criteria) this;
}
public Criteria andAcctCodeGreaterThan(String value) {
addCriterion("AcctCode >", value, "acctCode");
return (Criteria) this;
}
public Criteria andAcctCodeGreaterThanOrEqualTo(String value) {
addCriterion("AcctCode >=", value, "acctCode");
return (Criteria) this;
}
public Criteria andAcctCodeLessThan(String value) {
addCriterion("AcctCode <", value, "acctCode");
return (Criteria) this;
}
public Criteria andAcctCodeLessThanOrEqualTo(String value) {
addCriterion("AcctCode <=", value, "acctCode");
return (Criteria) this;
}
public Criteria andAcctCodeLike(String value) {
addCriterion("AcctCode like", value, "acctCode");
return (Criteria) this;
}
public Criteria andAcctCodeNotLike(String value) {
addCriterion("AcctCode not like", value, "acctCode");
return (Criteria) this;
}
public Criteria andAcctCodeIn(List<String> values) {
addCriterion("AcctCode in", values, "acctCode");
return (Criteria) this;
}
public Criteria andAcctCodeNotIn(List<String> values) {
addCriterion("AcctCode not in", values, "acctCode");
return (Criteria) this;
}
public Criteria andAcctCodeBetween(String value1, String value2) {
addCriterion("AcctCode between", value1, value2, "acctCode");
return (Criteria) this;
}
public Criteria andAcctCodeNotBetween(String value1, String value2) {
addCriterion("AcctCode not between", value1, value2, "acctCode");
return (Criteria) this;
}
public Criteria andNameIsNull() {
addCriterion("Name is null");
return (Criteria) this;
}
public Criteria andNameIsNotNull() {
addCriterion("Name is not null");
return (Criteria) this;
}
public Criteria andNameEqualTo(String value) {
addCriterion("Name =", value, "name");
return (Criteria) this;
}
public Criteria andNameNotEqualTo(String value) {
addCriterion("Name <>", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThan(String value) {
addCriterion("Name >", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThanOrEqualTo(String value) {
addCriterion("Name >=", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThan(String value) {
addCriterion("Name <", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThanOrEqualTo(String value) {
addCriterion("Name <=", value, "name");
return (Criteria) this;
}
public Criteria andNameLike(String value) {
addCriterion("Name like", value, "name");
return (Criteria) this;
}
public Criteria andNameNotLike(String value) {
addCriterion("Name not like", value, "name");
return (Criteria) this;
}
public Criteria andNameIn(List<String> values) {
addCriterion("Name in", values, "name");
return (Criteria) this;
}
public Criteria andNameNotIn(List<String> values) {
addCriterion("Name not in", values, "name");
return (Criteria) this;
}
public Criteria andNameBetween(String value1, String value2) {
addCriterion("Name between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andNameNotBetween(String value1, String value2) {
addCriterion("Name not between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andParentCodeIsNull() {
addCriterion("ParentCode is null");
return (Criteria) this;
}
public Criteria andParentCodeIsNotNull() {
addCriterion("ParentCode is not null");
return (Criteria) this;
}
public Criteria andParentCodeEqualTo(String value) {
addCriterion("ParentCode =", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeNotEqualTo(String value) {
addCriterion("ParentCode <>", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeGreaterThan(String value) {
addCriterion("ParentCode >", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeGreaterThanOrEqualTo(String value) {
addCriterion("ParentCode >=", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeLessThan(String value) {
addCriterion("ParentCode <", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeLessThanOrEqualTo(String value) {
addCriterion("ParentCode <=", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeLike(String value) {
addCriterion("ParentCode like", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeNotLike(String value) {
addCriterion("ParentCode not like", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeIn(List<String> values) {
addCriterion("ParentCode in", values, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeNotIn(List<String> values) {
addCriterion("ParentCode not in", values, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeBetween(String value1, String value2) {
addCriterion("ParentCode between", value1, value2, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeNotBetween(String value1, String value2) {
addCriterion("ParentCode not between", value1, value2, "parentCode");
return (Criteria) this;
}
public Criteria andFullNameIsNull() {
addCriterion("FullName is null");
return (Criteria) this;
}
public Criteria andFullNameIsNotNull() {
addCriterion("FullName is not null");
return (Criteria) this;
}
public Criteria andFullNameEqualTo(String value) {
addCriterion("FullName =", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameNotEqualTo(String value) {
addCriterion("FullName <>", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameGreaterThan(String value) {
addCriterion("FullName >", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameGreaterThanOrEqualTo(String value) {
addCriterion("FullName >=", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameLessThan(String value) {
addCriterion("FullName <", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameLessThanOrEqualTo(String value) {
addCriterion("FullName <=", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameLike(String value) {
addCriterion("FullName like", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameNotLike(String value) {
addCriterion("FullName not like", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameIn(List<String> values) {
addCriterion("FullName in", values, "fullName");
return (Criteria) this;
}
public Criteria andFullNameNotIn(List<String> values) {
addCriterion("FullName not in", values, "fullName");
return (Criteria) this;
}
public Criteria andFullNameBetween(String value1, String value2) {
addCriterion("FullName between", value1, value2, "fullName");
return (Criteria) this;
}
public Criteria andFullNameNotBetween(String value1, String value2) {
addCriterion("FullName not between", value1, value2, "fullName");
return (Criteria) this;
}
public Criteria andAcctPropIsNull() {
addCriterion("AcctProp is null");
return (Criteria) this;
}
public Criteria andAcctPropIsNotNull() {
addCriterion("AcctProp is not null");
return (Criteria) this;
}
public Criteria andAcctPropEqualTo(Integer value) {
addCriterion("AcctProp =", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropNotEqualTo(Integer value) {
addCriterion("AcctProp <>", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropGreaterThan(Integer value) {
addCriterion("AcctProp >", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropGreaterThanOrEqualTo(Integer value) {
addCriterion("AcctProp >=", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropLessThan(Integer value) {
addCriterion("AcctProp <", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropLessThanOrEqualTo(Integer value) {
addCriterion("AcctProp <=", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropIn(List<Integer> values) {
addCriterion("AcctProp in", values, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropNotIn(List<Integer> values) {
addCriterion("AcctProp not in", values, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropBetween(Integer value1, Integer value2) {
addCriterion("AcctProp between", value1, value2, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropNotBetween(Integer value1, Integer value2) {
addCriterion("AcctProp not between", value1, value2, "acctProp");
return (Criteria) this;
}
public Criteria andSubPropIsNull() {
addCriterion("SubProp is null");
return (Criteria) this;
}
public Criteria andSubPropIsNotNull() {
addCriterion("SubProp is not null");
return (Criteria) this;
}
public Criteria andSubPropEqualTo(Integer value) {
addCriterion("SubProp =", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropNotEqualTo(Integer value) {
addCriterion("SubProp <>", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropGreaterThan(Integer value) {
addCriterion("SubProp >", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropGreaterThanOrEqualTo(Integer value) {
addCriterion("SubProp >=", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropLessThan(Integer value) {
addCriterion("SubProp <", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropLessThanOrEqualTo(Integer value) {
addCriterion("SubProp <=", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropIn(List<Integer> values) {
addCriterion("SubProp in", values, "subProp");
return (Criteria) this;
}
public Criteria andSubPropNotIn(List<Integer> values) {
addCriterion("SubProp not in", values, "subProp");
return (Criteria) this;
}
public Criteria andSubPropBetween(Integer value1, Integer value2) {
addCriterion("SubProp between", value1, value2, "subProp");
return (Criteria) this;
}
public Criteria andSubPropNotBetween(Integer value1, Integer value2) {
addCriterion("SubProp not between", value1, value2, "subProp");
return (Criteria) this;
}
public Criteria andAcctLevelIsNull() {
addCriterion("AcctLevel is null");
return (Criteria) this;
}
public Criteria andAcctLevelIsNotNull() {
addCriterion("AcctLevel is not null");
return (Criteria) this;
}
public Criteria andAcctLevelEqualTo(Integer value) {
addCriterion("AcctLevel =", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelNotEqualTo(Integer value) {
addCriterion("AcctLevel <>", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelGreaterThan(Integer value) {
addCriterion("AcctLevel >", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelGreaterThanOrEqualTo(Integer value) {
addCriterion("AcctLevel >=", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelLessThan(Integer value) {
addCriterion("AcctLevel <", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelLessThanOrEqualTo(Integer value) {
addCriterion("AcctLevel <=", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelIn(List<Integer> values) {
addCriterion("AcctLevel in", values, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelNotIn(List<Integer> values) {
addCriterion("AcctLevel not in", values, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelBetween(Integer value1, Integer value2) {
addCriterion("AcctLevel between", value1, value2, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelNotBetween(Integer value1, Integer value2) {
addCriterion("AcctLevel not between", value1, value2, "acctLevel");
return (Criteria) this;
}
public Criteria andDirectionIsNull() {
addCriterion("Direction is null");
return (Criteria) this;
}
public Criteria andDirectionIsNotNull() {
addCriterion("Direction is not null");
return (Criteria) this;
}
public Criteria andDirectionEqualTo(Integer value) {
addCriterion("Direction =", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionNotEqualTo(Integer value) {
addCriterion("Direction <>", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionGreaterThan(Integer value) {
addCriterion("Direction >", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionGreaterThanOrEqualTo(Integer value) {
addCriterion("Direction >=", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionLessThan(Integer value) {
addCriterion("Direction <", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionLessThanOrEqualTo(Integer value) {
addCriterion("Direction <=", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionIn(List<Integer> values) {
addCriterion("Direction in", values, "direction");
return (Criteria) this;
}
public Criteria andDirectionNotIn(List<Integer> values) {
addCriterion("Direction not in", values, "direction");
return (Criteria) this;
}
public Criteria andDirectionBetween(Integer value1, Integer value2) {
addCriterion("Direction between", value1, value2, "direction");
return (Criteria) this;
}
public Criteria andDirectionNotBetween(Integer value1, Integer value2) {
addCriterion("Direction not between", value1, value2, "direction");
return (Criteria) this;
}
public Criteria andIsLeafIsNull() {
addCriterion("IsLeaf is null");
return (Criteria) this;
}
public Criteria andIsLeafIsNotNull() {
addCriterion("IsLeaf is not null");
return (Criteria) this;
}
public Criteria andIsLeafEqualTo(Short value) {
addCriterion("IsLeaf =", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafNotEqualTo(Short value) {
addCriterion("IsLeaf <>", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafGreaterThan(Short value) {
addCriterion("IsLeaf >", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafGreaterThanOrEqualTo(Short value) {
addCriterion("IsLeaf >=", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafLessThan(Short value) {
addCriterion("IsLeaf <", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafLessThanOrEqualTo(Short value) {
addCriterion("IsLeaf <=", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafIn(List<Short> values) {
addCriterion("IsLeaf in", values, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafNotIn(List<Short> values) {
addCriterion("IsLeaf not in", values, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafBetween(Short value1, Short value2) {
addCriterion("IsLeaf between", value1, value2, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafNotBetween(Short value1, Short value2) {
addCriterion("IsLeaf not between", value1, value2, "isLeaf");
return (Criteria) this;
}
public Criteria andIsActiveIsNull() {
addCriterion("IsActive is null");
return (Criteria) this;
}
public Criteria andIsActiveIsNotNull() {
addCriterion("IsActive is not null");
return (Criteria) this;
}
public Criteria andIsActiveEqualTo(Short value) {
addCriterion("IsActive =", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveNotEqualTo(Short value) {
addCriterion("IsActive <>", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveGreaterThan(Short value) {
addCriterion("IsActive >", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveGreaterThanOrEqualTo(Short value) {
addCriterion("IsActive >=", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveLessThan(Short value) {
addCriterion("IsActive <", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveLessThanOrEqualTo(Short value) {
addCriterion("IsActive <=", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveIn(List<Short> values) {
addCriterion("IsActive in", values, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveNotIn(List<Short> values) {
addCriterion("IsActive not in", values, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveBetween(Short value1, Short value2) {
addCriterion("IsActive between", value1, value2, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveNotBetween(Short value1, Short value2) {
addCriterion("IsActive not between", value1, value2, "isActive");
return (Criteria) this;
}
public Criteria andEnglishNameIsNull() {
addCriterion("EnglishName is null");
return (Criteria) this;
}
public Criteria andEnglishNameIsNotNull() {
addCriterion("EnglishName is not null");
return (Criteria) this;
}
public Criteria andEnglishNameEqualTo(String value) {
addCriterion("EnglishName =", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameNotEqualTo(String value) {
addCriterion("EnglishName <>", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameGreaterThan(String value) {
addCriterion("EnglishName >", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameGreaterThanOrEqualTo(String value) {
addCriterion("EnglishName >=", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameLessThan(String value) {
addCriterion("EnglishName <", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameLessThanOrEqualTo(String value) {
addCriterion("EnglishName <=", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameLike(String value) {
addCriterion("EnglishName like", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameNotLike(String value) {
addCriterion("EnglishName not like", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameIn(List<String> values) {
addCriterion("EnglishName in", values, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameNotIn(List<String> values) {
addCriterion("EnglishName not in", values, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameBetween(String value1, String value2) {
addCriterion("EnglishName between", value1, value2, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameNotBetween(String value1, String value2) {
addCriterion("EnglishName not between", value1, value2, "englishName");
return (Criteria) this;
}
public Criteria andStdCodeIsNull() {
addCriterion("StdCode is null");
return (Criteria) this;
}
public Criteria andStdCodeIsNotNull() {
addCriterion("StdCode is not null");
return (Criteria) this;
}
public Criteria andStdCodeEqualTo(String value) {
addCriterion("StdCode =", value, "stdCode");
return (Criteria) this;
}
public Criteria andStdCodeNotEqualTo(String value) {
addCriterion("StdCode <>", value, "stdCode");
return (Criteria) this;
}
public Criteria andStdCodeGreaterThan(String value) {
addCriterion("StdCode >", value, "stdCode");
return (Criteria) this;
}
public Criteria andStdCodeGreaterThanOrEqualTo(String value) {
addCriterion("StdCode >=", value, "stdCode");
return (Criteria) this;
}
public Criteria andStdCodeLessThan(String value) {
addCriterion("StdCode <", value, "stdCode");
return (Criteria) this;
}
public Criteria andStdCodeLessThanOrEqualTo(String value) {
addCriterion("StdCode <=", value, "stdCode");
return (Criteria) this;
}
public Criteria andStdCodeLike(String value) {
addCriterion("StdCode like", value, "stdCode");
return (Criteria) this;
}
public Criteria andStdCodeNotLike(String value) {
addCriterion("StdCode not like", value, "stdCode");
return (Criteria) this;
}
public Criteria andStdCodeIn(List<String> values) {
addCriterion("StdCode in", values, "stdCode");
return (Criteria) this;
}
public Criteria andStdCodeNotIn(List<String> values) {
addCriterion("StdCode not in", values, "stdCode");
return (Criteria) this;
}
public Criteria andStdCodeBetween(String value1, String value2) {
addCriterion("StdCode between", value1, value2, "stdCode");
return (Criteria) this;
}
public Criteria andStdCodeNotBetween(String value1, String value2) {
addCriterion("StdCode not between", value1, value2, "stdCode");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDIsNull() {
addCriterion("EnterpriseAccountSetID is null");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDIsNotNull() {
addCriterion("EnterpriseAccountSetID is not null");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDEqualTo(String value) {
addCriterion("EnterpriseAccountSetID =", value, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDNotEqualTo(String value) {
addCriterion("EnterpriseAccountSetID <>", value, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDGreaterThan(String value) {
addCriterion("EnterpriseAccountSetID >", value, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDGreaterThanOrEqualTo(String value) {
addCriterion("EnterpriseAccountSetID >=", value, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDLessThan(String value) {
addCriterion("EnterpriseAccountSetID <", value, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDLessThanOrEqualTo(String value) {
addCriterion("EnterpriseAccountSetID <=", value, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDLike(String value) {
addCriterion("EnterpriseAccountSetID like", value, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDNotLike(String value) {
addCriterion("EnterpriseAccountSetID not like", value, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDIn(List<String> values) {
addCriterion("EnterpriseAccountSetID in", values, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDNotIn(List<String> values) {
addCriterion("EnterpriseAccountSetID not in", values, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDBetween(String value1, String value2) {
addCriterion("EnterpriseAccountSetID between", value1, value2, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andEnterpriseAccountSetIDNotBetween(String value1, String value2) {
addCriterion("EnterpriseAccountSetID not between", value1, value2, "enterpriseAccountSetID");
return (Criteria) this;
}
public Criteria andIsDummyIsNull() {
addCriterion("IsDummy is null");
return (Criteria) this;
}
public Criteria andIsDummyIsNotNull() {
addCriterion("IsDummy is not null");
return (Criteria) this;
}
public Criteria andIsDummyEqualTo(Integer value) {
addCriterion("IsDummy =", value, "isDummy");
return (Criteria) this;
}
public Criteria andIsDummyNotEqualTo(Integer value) {
addCriterion("IsDummy <>", value, "isDummy");
return (Criteria) this;
}
public Criteria andIsDummyGreaterThan(Integer value) {
addCriterion("IsDummy >", value, "isDummy");
return (Criteria) this;
}
public Criteria andIsDummyGreaterThanOrEqualTo(Integer value) {
addCriterion("IsDummy >=", value, "isDummy");
return (Criteria) this;
}
public Criteria andIsDummyLessThan(Integer value) {
addCriterion("IsDummy <", value, "isDummy");
return (Criteria) this;
}
public Criteria andIsDummyLessThanOrEqualTo(Integer value) {
addCriterion("IsDummy <=", value, "isDummy");
return (Criteria) this;
}
public Criteria andIsDummyIn(List<Integer> values) {
addCriterion("IsDummy in", values, "isDummy");
return (Criteria) this;
}
public Criteria andIsDummyNotIn(List<Integer> values) {
addCriterion("IsDummy not in", values, "isDummy");
return (Criteria) this;
}
public Criteria andIsDummyBetween(Integer value1, Integer value2) {
addCriterion("IsDummy between", value1, value2, "isDummy");
return (Criteria) this;
}
public Criteria andIsDummyNotBetween(Integer value1, Integer value2) {
addCriterion("IsDummy not between", value1, value2, "isDummy");
return (Criteria) this;
}
public Criteria andIsInVoucherIsNull() {
addCriterion("IsInVoucher is null");
return (Criteria) this;
}
public Criteria andIsInVoucherIsNotNull() {
addCriterion("IsInVoucher is not null");
return (Criteria) this;
}
public Criteria andIsInVoucherEqualTo(Integer value) {
addCriterion("IsInVoucher =", value, "isInVoucher");
return (Criteria) this;
}
public Criteria andIsInVoucherNotEqualTo(Integer value) {
addCriterion("IsInVoucher <>", value, "isInVoucher");
return (Criteria) this;
}
public Criteria andIsInVoucherGreaterThan(Integer value) {
addCriterion("IsInVoucher >", value, "isInVoucher");
return (Criteria) this;
}
public Criteria andIsInVoucherGreaterThanOrEqualTo(Integer value) {
addCriterion("IsInVoucher >=", value, "isInVoucher");
return (Criteria) this;
}
public Criteria andIsInVoucherLessThan(Integer value) {
addCriterion("IsInVoucher <", value, "isInVoucher");
return (Criteria) this;
}
public Criteria andIsInVoucherLessThanOrEqualTo(Integer value) {
addCriterion("IsInVoucher <=", value, "isInVoucher");
return (Criteria) this;
}
public Criteria andIsInVoucherIn(List<Integer> values) {
addCriterion("IsInVoucher in", values, "isInVoucher");
return (Criteria) this;
}
public Criteria andIsInVoucherNotIn(List<Integer> values) {
addCriterion("IsInVoucher not in", values, "isInVoucher");
return (Criteria) this;
}
public Criteria andIsInVoucherBetween(Integer value1, Integer value2) {
addCriterion("IsInVoucher between", value1, value2, "isInVoucher");
return (Criteria) this;
}
public Criteria andIsInVoucherNotBetween(Integer value1, Integer value2) {
addCriterion("IsInVoucher not between", value1, value2, "isInVoucher");
return (Criteria) this;
}
public Criteria andCreatorIDIsNull() {
addCriterion("CreatorID is null");
return (Criteria) this;
}
public Criteria andCreatorIDIsNotNull() {
addCriterion("CreatorID is not null");
return (Criteria) this;
}
public Criteria andCreatorIDEqualTo(String value) {
addCriterion("CreatorID =", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDNotEqualTo(String value) {
addCriterion("CreatorID <>", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDGreaterThan(String value) {
addCriterion("CreatorID >", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDGreaterThanOrEqualTo(String value) {
addCriterion("CreatorID >=", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDLessThan(String value) {
addCriterion("CreatorID <", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDLessThanOrEqualTo(String value) {
addCriterion("CreatorID <=", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDLike(String value) {
addCriterion("CreatorID like", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDNotLike(String value) {
addCriterion("CreatorID not like", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDIn(List<String> values) {
addCriterion("CreatorID in", values, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDNotIn(List<String> values) {
addCriterion("CreatorID not in", values, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDBetween(String value1, String value2) {
addCriterion("CreatorID between", value1, value2, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDNotBetween(String value1, String value2) {
addCriterion("CreatorID not between", value1, value2, "creatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDIsNull() {
addCriterion("UpdatorID is null");
return (Criteria) this;
}
public Criteria andUpdatorIDIsNotNull() {
addCriterion("UpdatorID is not null");
return (Criteria) this;
}
public Criteria andUpdatorIDEqualTo(String value) {
addCriterion("UpdatorID =", value, "updatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDNotEqualTo(String value) {
addCriterion("UpdatorID <>", value, "updatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDGreaterThan(String value) {
addCriterion("UpdatorID >", value, "updatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDGreaterThanOrEqualTo(String value) {
addCriterion("UpdatorID >=", value, "updatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDLessThan(String value) {
addCriterion("UpdatorID <", value, "updatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDLessThanOrEqualTo(String value) {
addCriterion("UpdatorID <=", value, "updatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDLike(String value) {
addCriterion("UpdatorID like", value, "updatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDNotLike(String value) {
addCriterion("UpdatorID not like", value, "updatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDIn(List<String> values) {
addCriterion("UpdatorID in", values, "updatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDNotIn(List<String> values) {
addCriterion("UpdatorID not in", values, "updatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDBetween(String value1, String value2) {
addCriterion("UpdatorID between", value1, value2, "updatorID");
return (Criteria) this;
}
public Criteria andUpdatorIDNotBetween(String value1, String value2) {
addCriterion("UpdatorID not between", value1, value2, "updatorID");
return (Criteria) this;
}
public Criteria andCreateTimeIsNull() {
addCriterion("CreateTime is null");
return (Criteria) this;
}
public Criteria andCreateTimeIsNotNull() {
addCriterion("CreateTime is not null");
return (Criteria) this;
}
public Criteria andCreateTimeEqualTo(Date value) {
addCriterion("CreateTime =", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotEqualTo(Date value) {
addCriterion("CreateTime <>", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThan(Date value) {
addCriterion("CreateTime >", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
addCriterion("CreateTime >=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThan(Date value) {
addCriterion("CreateTime <", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
addCriterion("CreateTime <=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeIn(List<Date> values) {
addCriterion("CreateTime in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotIn(List<Date> values) {
addCriterion("CreateTime not in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeBetween(Date value1, Date value2) {
addCriterion("CreateTime between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
addCriterion("CreateTime not between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNull() {
addCriterion("UpdateTime is null");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNotNull() {
addCriterion("UpdateTime is not null");
return (Criteria) this;
}
public Criteria andUpdateTimeEqualTo(Date value) {
addCriterion("UpdateTime =", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotEqualTo(Date value) {
addCriterion("UpdateTime <>", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThan(Date value) {
addCriterion("UpdateTime >", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
addCriterion("UpdateTime >=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThan(Date value) {
addCriterion("UpdateTime <", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
addCriterion("UpdateTime <=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeIn(List<Date> values) {
addCriterion("UpdateTime in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotIn(List<Date> values) {
addCriterion("UpdateTime not in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeBetween(Date value1, Date value2) {
addCriterion("UpdateTime between", value1, value2, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
addCriterion("UpdateTime not between", value1, value2, "updateTime");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table EnterpriseAccount
*
* @mbg.generated do_not_delete_during_merge
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table EnterpriseAccount
*
* @mbg.generated
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}
\ No newline at end of file
package pwc.taxtech.atms.vatEntitiy;
import java.io.Serializable;
import java.util.Date;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table OperationLog
*
* @mbg.generated do_not_delete_during_merge
*/
public class VatOperationLog implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.ID
*
* @mbg.generated
*/
private String ID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.OperationName
*
* @mbg.generated
*/
private String operationName;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.ModuleID
*
* @mbg.generated
*/
private Integer moduleID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.OperationObject
*
* @mbg.generated
*/
private String operationObject;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.OperationType
*
* @mbg.generated
*/
private Integer operationType;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.OperationContent
*
* @mbg.generated
*/
private String operationContent;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.OriginalState
*
* @mbg.generated
*/
private String originalState;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.UpdateState
*
* @mbg.generated
*/
private String updateState;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.CreatorID
*
* @mbg.generated
*/
private String creatorID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.Comment
*
* @mbg.generated
*/
private String comment;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.CreateTime
*
* @mbg.generated
*/
private Date createTime;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.UpdateTime
*
* @mbg.generated
*/
private Date updateTime;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.IP
*
* @mbg.generated
*/
private String IP;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.Period
*
* @mbg.generated
*/
private Integer period;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column OperationLog.ServiceType
*
* @mbg.generated
*/
private Integer serviceType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table OperationLog
*
* @mbg.generated
*/
private static final long serialVersionUID = 1L;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.ID
*
* @return the value of OperationLog.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.ID
*
* @param ID the value for OperationLog.ID
*
* @mbg.generated
*/
public void setID(String ID) {
this.ID = ID == null ? null : ID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.OperationName
*
* @return the value of OperationLog.OperationName
*
* @mbg.generated
*/
public String getOperationName() {
return operationName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.OperationName
*
* @param operationName the value for OperationLog.OperationName
*
* @mbg.generated
*/
public void setOperationName(String operationName) {
this.operationName = operationName == null ? null : operationName.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.ModuleID
*
* @return the value of OperationLog.ModuleID
*
* @mbg.generated
*/
public Integer getModuleID() {
return moduleID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.ModuleID
*
* @param moduleID the value for OperationLog.ModuleID
*
* @mbg.generated
*/
public void setModuleID(Integer moduleID) {
this.moduleID = moduleID;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.OperationObject
*
* @return the value of OperationLog.OperationObject
*
* @mbg.generated
*/
public String getOperationObject() {
return operationObject;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.OperationObject
*
* @param operationObject the value for OperationLog.OperationObject
*
* @mbg.generated
*/
public void setOperationObject(String operationObject) {
this.operationObject = operationObject == null ? null : operationObject.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.OperationType
*
* @return the value of OperationLog.OperationType
*
* @mbg.generated
*/
public Integer getOperationType() {
return operationType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.OperationType
*
* @param operationType the value for OperationLog.OperationType
*
* @mbg.generated
*/
public void setOperationType(Integer operationType) {
this.operationType = operationType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.OperationContent
*
* @return the value of OperationLog.OperationContent
*
* @mbg.generated
*/
public String getOperationContent() {
return operationContent;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.OperationContent
*
* @param operationContent the value for OperationLog.OperationContent
*
* @mbg.generated
*/
public void setOperationContent(String operationContent) {
this.operationContent = operationContent == null ? null : operationContent.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.OriginalState
*
* @return the value of OperationLog.OriginalState
*
* @mbg.generated
*/
public String getOriginalState() {
return originalState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.OriginalState
*
* @param originalState the value for OperationLog.OriginalState
*
* @mbg.generated
*/
public void setOriginalState(String originalState) {
this.originalState = originalState == null ? null : originalState.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.UpdateState
*
* @return the value of OperationLog.UpdateState
*
* @mbg.generated
*/
public String getUpdateState() {
return updateState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.UpdateState
*
* @param updateState the value for OperationLog.UpdateState
*
* @mbg.generated
*/
public void setUpdateState(String updateState) {
this.updateState = updateState == null ? null : updateState.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.CreatorID
*
* @return the value of OperationLog.CreatorID
*
* @mbg.generated
*/
public String getCreatorID() {
return creatorID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.CreatorID
*
* @param creatorID the value for OperationLog.CreatorID
*
* @mbg.generated
*/
public void setCreatorID(String creatorID) {
this.creatorID = creatorID == null ? null : creatorID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.Comment
*
* @return the value of OperationLog.Comment
*
* @mbg.generated
*/
public String getComment() {
return comment;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.Comment
*
* @param comment the value for OperationLog.Comment
*
* @mbg.generated
*/
public void setComment(String comment) {
this.comment = comment == null ? null : comment.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.CreateTime
*
* @return the value of OperationLog.CreateTime
*
* @mbg.generated
*/
public Date getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.CreateTime
*
* @param createTime the value for OperationLog.CreateTime
*
* @mbg.generated
*/
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.UpdateTime
*
* @return the value of OperationLog.UpdateTime
*
* @mbg.generated
*/
public Date getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.UpdateTime
*
* @param updateTime the value for OperationLog.UpdateTime
*
* @mbg.generated
*/
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.IP
*
* @return the value of OperationLog.IP
*
* @mbg.generated
*/
public String getIP() {
return IP;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.IP
*
* @param IP the value for OperationLog.IP
*
* @mbg.generated
*/
public void setIP(String IP) {
this.IP = IP == null ? null : IP.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.Period
*
* @return the value of OperationLog.Period
*
* @mbg.generated
*/
public Integer getPeriod() {
return period;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.Period
*
* @param period the value for OperationLog.Period
*
* @mbg.generated
*/
public void setPeriod(Integer period) {
this.period = period;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column OperationLog.ServiceType
*
* @return the value of OperationLog.ServiceType
*
* @mbg.generated
*/
public Integer getServiceType() {
return serviceType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column OperationLog.ServiceType
*
* @param serviceType the value for OperationLog.ServiceType
*
* @mbg.generated
*/
public void setServiceType(Integer serviceType) {
this.serviceType = serviceType;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", ID=").append(ID);
sb.append(", operationName=").append(operationName);
sb.append(", moduleID=").append(moduleID);
sb.append(", operationObject=").append(operationObject);
sb.append(", operationType=").append(operationType);
sb.append(", operationContent=").append(operationContent);
sb.append(", originalState=").append(originalState);
sb.append(", updateState=").append(updateState);
sb.append(", creatorID=").append(creatorID);
sb.append(", comment=").append(comment);
sb.append(", createTime=").append(createTime);
sb.append(", updateTime=").append(updateTime);
sb.append(", IP=").append(IP);
sb.append(", period=").append(period);
sb.append(", serviceType=").append(serviceType);
sb.append("]");
return sb.toString();
}
}
\ No newline at end of file
package pwc.taxtech.atms.vatEntitiy;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class VatOperationLogExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table OperationLog
*
* @mbg.generated
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table OperationLog
*
* @mbg.generated
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table OperationLog
*
* @mbg.generated
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
public VatOperationLogExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table OperationLog
*
* @mbg.generated
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table OperationLog
*
* @mbg.generated
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIDIsNull() {
addCriterion("ID is null");
return (Criteria) this;
}
public Criteria andIDIsNotNull() {
addCriterion("ID is not null");
return (Criteria) this;
}
public Criteria andIDEqualTo(String value) {
addCriterion("ID =", value, "ID");
return (Criteria) this;
}
public Criteria andIDNotEqualTo(String value) {
addCriterion("ID <>", value, "ID");
return (Criteria) this;
}
public Criteria andIDGreaterThan(String value) {
addCriterion("ID >", value, "ID");
return (Criteria) this;
}
public Criteria andIDGreaterThanOrEqualTo(String value) {
addCriterion("ID >=", value, "ID");
return (Criteria) this;
}
public Criteria andIDLessThan(String value) {
addCriterion("ID <", value, "ID");
return (Criteria) this;
}
public Criteria andIDLessThanOrEqualTo(String value) {
addCriterion("ID <=", value, "ID");
return (Criteria) this;
}
public Criteria andIDLike(String value) {
addCriterion("ID like", value, "ID");
return (Criteria) this;
}
public Criteria andIDNotLike(String value) {
addCriterion("ID not like", value, "ID");
return (Criteria) this;
}
public Criteria andIDIn(List<String> values) {
addCriterion("ID in", values, "ID");
return (Criteria) this;
}
public Criteria andIDNotIn(List<String> values) {
addCriterion("ID not in", values, "ID");
return (Criteria) this;
}
public Criteria andIDBetween(String value1, String value2) {
addCriterion("ID between", value1, value2, "ID");
return (Criteria) this;
}
public Criteria andIDNotBetween(String value1, String value2) {
addCriterion("ID not between", value1, value2, "ID");
return (Criteria) this;
}
public Criteria andOperationNameIsNull() {
addCriterion("OperationName is null");
return (Criteria) this;
}
public Criteria andOperationNameIsNotNull() {
addCriterion("OperationName is not null");
return (Criteria) this;
}
public Criteria andOperationNameEqualTo(String value) {
addCriterion("OperationName =", value, "operationName");
return (Criteria) this;
}
public Criteria andOperationNameNotEqualTo(String value) {
addCriterion("OperationName <>", value, "operationName");
return (Criteria) this;
}
public Criteria andOperationNameGreaterThan(String value) {
addCriterion("OperationName >", value, "operationName");
return (Criteria) this;
}
public Criteria andOperationNameGreaterThanOrEqualTo(String value) {
addCriterion("OperationName >=", value, "operationName");
return (Criteria) this;
}
public Criteria andOperationNameLessThan(String value) {
addCriterion("OperationName <", value, "operationName");
return (Criteria) this;
}
public Criteria andOperationNameLessThanOrEqualTo(String value) {
addCriterion("OperationName <=", value, "operationName");
return (Criteria) this;
}
public Criteria andOperationNameLike(String value) {
addCriterion("OperationName like", value, "operationName");
return (Criteria) this;
}
public Criteria andOperationNameNotLike(String value) {
addCriterion("OperationName not like", value, "operationName");
return (Criteria) this;
}
public Criteria andOperationNameIn(List<String> values) {
addCriterion("OperationName in", values, "operationName");
return (Criteria) this;
}
public Criteria andOperationNameNotIn(List<String> values) {
addCriterion("OperationName not in", values, "operationName");
return (Criteria) this;
}
public Criteria andOperationNameBetween(String value1, String value2) {
addCriterion("OperationName between", value1, value2, "operationName");
return (Criteria) this;
}
public Criteria andOperationNameNotBetween(String value1, String value2) {
addCriterion("OperationName not between", value1, value2, "operationName");
return (Criteria) this;
}
public Criteria andModuleIDIsNull() {
addCriterion("ModuleID is null");
return (Criteria) this;
}
public Criteria andModuleIDIsNotNull() {
addCriterion("ModuleID is not null");
return (Criteria) this;
}
public Criteria andModuleIDEqualTo(Integer value) {
addCriterion("ModuleID =", value, "moduleID");
return (Criteria) this;
}
public Criteria andModuleIDNotEqualTo(Integer value) {
addCriterion("ModuleID <>", value, "moduleID");
return (Criteria) this;
}
public Criteria andModuleIDGreaterThan(Integer value) {
addCriterion("ModuleID >", value, "moduleID");
return (Criteria) this;
}
public Criteria andModuleIDGreaterThanOrEqualTo(Integer value) {
addCriterion("ModuleID >=", value, "moduleID");
return (Criteria) this;
}
public Criteria andModuleIDLessThan(Integer value) {
addCriterion("ModuleID <", value, "moduleID");
return (Criteria) this;
}
public Criteria andModuleIDLessThanOrEqualTo(Integer value) {
addCriterion("ModuleID <=", value, "moduleID");
return (Criteria) this;
}
public Criteria andModuleIDIn(List<Integer> values) {
addCriterion("ModuleID in", values, "moduleID");
return (Criteria) this;
}
public Criteria andModuleIDNotIn(List<Integer> values) {
addCriterion("ModuleID not in", values, "moduleID");
return (Criteria) this;
}
public Criteria andModuleIDBetween(Integer value1, Integer value2) {
addCriterion("ModuleID between", value1, value2, "moduleID");
return (Criteria) this;
}
public Criteria andModuleIDNotBetween(Integer value1, Integer value2) {
addCriterion("ModuleID not between", value1, value2, "moduleID");
return (Criteria) this;
}
public Criteria andOperationObjectIsNull() {
addCriterion("OperationObject is null");
return (Criteria) this;
}
public Criteria andOperationObjectIsNotNull() {
addCriterion("OperationObject is not null");
return (Criteria) this;
}
public Criteria andOperationObjectEqualTo(String value) {
addCriterion("OperationObject =", value, "operationObject");
return (Criteria) this;
}
public Criteria andOperationObjectNotEqualTo(String value) {
addCriterion("OperationObject <>", value, "operationObject");
return (Criteria) this;
}
public Criteria andOperationObjectGreaterThan(String value) {
addCriterion("OperationObject >", value, "operationObject");
return (Criteria) this;
}
public Criteria andOperationObjectGreaterThanOrEqualTo(String value) {
addCriterion("OperationObject >=", value, "operationObject");
return (Criteria) this;
}
public Criteria andOperationObjectLessThan(String value) {
addCriterion("OperationObject <", value, "operationObject");
return (Criteria) this;
}
public Criteria andOperationObjectLessThanOrEqualTo(String value) {
addCriterion("OperationObject <=", value, "operationObject");
return (Criteria) this;
}
public Criteria andOperationObjectLike(String value) {
addCriterion("OperationObject like", value, "operationObject");
return (Criteria) this;
}
public Criteria andOperationObjectNotLike(String value) {
addCriterion("OperationObject not like", value, "operationObject");
return (Criteria) this;
}
public Criteria andOperationObjectIn(List<String> values) {
addCriterion("OperationObject in", values, "operationObject");
return (Criteria) this;
}
public Criteria andOperationObjectNotIn(List<String> values) {
addCriterion("OperationObject not in", values, "operationObject");
return (Criteria) this;
}
public Criteria andOperationObjectBetween(String value1, String value2) {
addCriterion("OperationObject between", value1, value2, "operationObject");
return (Criteria) this;
}
public Criteria andOperationObjectNotBetween(String value1, String value2) {
addCriterion("OperationObject not between", value1, value2, "operationObject");
return (Criteria) this;
}
public Criteria andOperationTypeIsNull() {
addCriterion("OperationType is null");
return (Criteria) this;
}
public Criteria andOperationTypeIsNotNull() {
addCriterion("OperationType is not null");
return (Criteria) this;
}
public Criteria andOperationTypeEqualTo(Integer value) {
addCriterion("OperationType =", value, "operationType");
return (Criteria) this;
}
public Criteria andOperationTypeNotEqualTo(Integer value) {
addCriterion("OperationType <>", value, "operationType");
return (Criteria) this;
}
public Criteria andOperationTypeGreaterThan(Integer value) {
addCriterion("OperationType >", value, "operationType");
return (Criteria) this;
}
public Criteria andOperationTypeGreaterThanOrEqualTo(Integer value) {
addCriterion("OperationType >=", value, "operationType");
return (Criteria) this;
}
public Criteria andOperationTypeLessThan(Integer value) {
addCriterion("OperationType <", value, "operationType");
return (Criteria) this;
}
public Criteria andOperationTypeLessThanOrEqualTo(Integer value) {
addCriterion("OperationType <=", value, "operationType");
return (Criteria) this;
}
public Criteria andOperationTypeIn(List<Integer> values) {
addCriterion("OperationType in", values, "operationType");
return (Criteria) this;
}
public Criteria andOperationTypeNotIn(List<Integer> values) {
addCriterion("OperationType not in", values, "operationType");
return (Criteria) this;
}
public Criteria andOperationTypeBetween(Integer value1, Integer value2) {
addCriterion("OperationType between", value1, value2, "operationType");
return (Criteria) this;
}
public Criteria andOperationTypeNotBetween(Integer value1, Integer value2) {
addCriterion("OperationType not between", value1, value2, "operationType");
return (Criteria) this;
}
public Criteria andOperationContentIsNull() {
addCriterion("OperationContent is null");
return (Criteria) this;
}
public Criteria andOperationContentIsNotNull() {
addCriterion("OperationContent is not null");
return (Criteria) this;
}
public Criteria andOperationContentEqualTo(String value) {
addCriterion("OperationContent =", value, "operationContent");
return (Criteria) this;
}
public Criteria andOperationContentNotEqualTo(String value) {
addCriterion("OperationContent <>", value, "operationContent");
return (Criteria) this;
}
public Criteria andOperationContentGreaterThan(String value) {
addCriterion("OperationContent >", value, "operationContent");
return (Criteria) this;
}
public Criteria andOperationContentGreaterThanOrEqualTo(String value) {
addCriterion("OperationContent >=", value, "operationContent");
return (Criteria) this;
}
public Criteria andOperationContentLessThan(String value) {
addCriterion("OperationContent <", value, "operationContent");
return (Criteria) this;
}
public Criteria andOperationContentLessThanOrEqualTo(String value) {
addCriterion("OperationContent <=", value, "operationContent");
return (Criteria) this;
}
public Criteria andOperationContentLike(String value) {
addCriterion("OperationContent like", value, "operationContent");
return (Criteria) this;
}
public Criteria andOperationContentNotLike(String value) {
addCriterion("OperationContent not like", value, "operationContent");
return (Criteria) this;
}
public Criteria andOperationContentIn(List<String> values) {
addCriterion("OperationContent in", values, "operationContent");
return (Criteria) this;
}
public Criteria andOperationContentNotIn(List<String> values) {
addCriterion("OperationContent not in", values, "operationContent");
return (Criteria) this;
}
public Criteria andOperationContentBetween(String value1, String value2) {
addCriterion("OperationContent between", value1, value2, "operationContent");
return (Criteria) this;
}
public Criteria andOperationContentNotBetween(String value1, String value2) {
addCriterion("OperationContent not between", value1, value2, "operationContent");
return (Criteria) this;
}
public Criteria andOriginalStateIsNull() {
addCriterion("OriginalState is null");
return (Criteria) this;
}
public Criteria andOriginalStateIsNotNull() {
addCriterion("OriginalState is not null");
return (Criteria) this;
}
public Criteria andOriginalStateEqualTo(String value) {
addCriterion("OriginalState =", value, "originalState");
return (Criteria) this;
}
public Criteria andOriginalStateNotEqualTo(String value) {
addCriterion("OriginalState <>", value, "originalState");
return (Criteria) this;
}
public Criteria andOriginalStateGreaterThan(String value) {
addCriterion("OriginalState >", value, "originalState");
return (Criteria) this;
}
public Criteria andOriginalStateGreaterThanOrEqualTo(String value) {
addCriterion("OriginalState >=", value, "originalState");
return (Criteria) this;
}
public Criteria andOriginalStateLessThan(String value) {
addCriterion("OriginalState <", value, "originalState");
return (Criteria) this;
}
public Criteria andOriginalStateLessThanOrEqualTo(String value) {
addCriterion("OriginalState <=", value, "originalState");
return (Criteria) this;
}
public Criteria andOriginalStateLike(String value) {
addCriterion("OriginalState like", value, "originalState");
return (Criteria) this;
}
public Criteria andOriginalStateNotLike(String value) {
addCriterion("OriginalState not like", value, "originalState");
return (Criteria) this;
}
public Criteria andOriginalStateIn(List<String> values) {
addCriterion("OriginalState in", values, "originalState");
return (Criteria) this;
}
public Criteria andOriginalStateNotIn(List<String> values) {
addCriterion("OriginalState not in", values, "originalState");
return (Criteria) this;
}
public Criteria andOriginalStateBetween(String value1, String value2) {
addCriterion("OriginalState between", value1, value2, "originalState");
return (Criteria) this;
}
public Criteria andOriginalStateNotBetween(String value1, String value2) {
addCriterion("OriginalState not between", value1, value2, "originalState");
return (Criteria) this;
}
public Criteria andUpdateStateIsNull() {
addCriterion("UpdateState is null");
return (Criteria) this;
}
public Criteria andUpdateStateIsNotNull() {
addCriterion("UpdateState is not null");
return (Criteria) this;
}
public Criteria andUpdateStateEqualTo(String value) {
addCriterion("UpdateState =", value, "updateState");
return (Criteria) this;
}
public Criteria andUpdateStateNotEqualTo(String value) {
addCriterion("UpdateState <>", value, "updateState");
return (Criteria) this;
}
public Criteria andUpdateStateGreaterThan(String value) {
addCriterion("UpdateState >", value, "updateState");
return (Criteria) this;
}
public Criteria andUpdateStateGreaterThanOrEqualTo(String value) {
addCriterion("UpdateState >=", value, "updateState");
return (Criteria) this;
}
public Criteria andUpdateStateLessThan(String value) {
addCriterion("UpdateState <", value, "updateState");
return (Criteria) this;
}
public Criteria andUpdateStateLessThanOrEqualTo(String value) {
addCriterion("UpdateState <=", value, "updateState");
return (Criteria) this;
}
public Criteria andUpdateStateLike(String value) {
addCriterion("UpdateState like", value, "updateState");
return (Criteria) this;
}
public Criteria andUpdateStateNotLike(String value) {
addCriterion("UpdateState not like", value, "updateState");
return (Criteria) this;
}
public Criteria andUpdateStateIn(List<String> values) {
addCriterion("UpdateState in", values, "updateState");
return (Criteria) this;
}
public Criteria andUpdateStateNotIn(List<String> values) {
addCriterion("UpdateState not in", values, "updateState");
return (Criteria) this;
}
public Criteria andUpdateStateBetween(String value1, String value2) {
addCriterion("UpdateState between", value1, value2, "updateState");
return (Criteria) this;
}
public Criteria andUpdateStateNotBetween(String value1, String value2) {
addCriterion("UpdateState not between", value1, value2, "updateState");
return (Criteria) this;
}
public Criteria andCreatorIDIsNull() {
addCriterion("CreatorID is null");
return (Criteria) this;
}
public Criteria andCreatorIDIsNotNull() {
addCriterion("CreatorID is not null");
return (Criteria) this;
}
public Criteria andCreatorIDEqualTo(String value) {
addCriterion("CreatorID =", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDNotEqualTo(String value) {
addCriterion("CreatorID <>", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDGreaterThan(String value) {
addCriterion("CreatorID >", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDGreaterThanOrEqualTo(String value) {
addCriterion("CreatorID >=", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDLessThan(String value) {
addCriterion("CreatorID <", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDLessThanOrEqualTo(String value) {
addCriterion("CreatorID <=", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDLike(String value) {
addCriterion("CreatorID like", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDNotLike(String value) {
addCriterion("CreatorID not like", value, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDIn(List<String> values) {
addCriterion("CreatorID in", values, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDNotIn(List<String> values) {
addCriterion("CreatorID not in", values, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDBetween(String value1, String value2) {
addCriterion("CreatorID between", value1, value2, "creatorID");
return (Criteria) this;
}
public Criteria andCreatorIDNotBetween(String value1, String value2) {
addCriterion("CreatorID not between", value1, value2, "creatorID");
return (Criteria) this;
}
public Criteria andCommentIsNull() {
addCriterion("Comment is null");
return (Criteria) this;
}
public Criteria andCommentIsNotNull() {
addCriterion("Comment is not null");
return (Criteria) this;
}
public Criteria andCommentEqualTo(String value) {
addCriterion("Comment =", value, "comment");
return (Criteria) this;
}
public Criteria andCommentNotEqualTo(String value) {
addCriterion("Comment <>", value, "comment");
return (Criteria) this;
}
public Criteria andCommentGreaterThan(String value) {
addCriterion("Comment >", value, "comment");
return (Criteria) this;
}
public Criteria andCommentGreaterThanOrEqualTo(String value) {
addCriterion("Comment >=", value, "comment");
return (Criteria) this;
}
public Criteria andCommentLessThan(String value) {
addCriterion("Comment <", value, "comment");
return (Criteria) this;
}
public Criteria andCommentLessThanOrEqualTo(String value) {
addCriterion("Comment <=", value, "comment");
return (Criteria) this;
}
public Criteria andCommentLike(String value) {
addCriterion("Comment like", value, "comment");
return (Criteria) this;
}
public Criteria andCommentNotLike(String value) {
addCriterion("Comment not like", value, "comment");
return (Criteria) this;
}
public Criteria andCommentIn(List<String> values) {
addCriterion("Comment in", values, "comment");
return (Criteria) this;
}
public Criteria andCommentNotIn(List<String> values) {
addCriterion("Comment not in", values, "comment");
return (Criteria) this;
}
public Criteria andCommentBetween(String value1, String value2) {
addCriterion("Comment between", value1, value2, "comment");
return (Criteria) this;
}
public Criteria andCommentNotBetween(String value1, String value2) {
addCriterion("Comment not between", value1, value2, "comment");
return (Criteria) this;
}
public Criteria andCreateTimeIsNull() {
addCriterion("CreateTime is null");
return (Criteria) this;
}
public Criteria andCreateTimeIsNotNull() {
addCriterion("CreateTime is not null");
return (Criteria) this;
}
public Criteria andCreateTimeEqualTo(Date value) {
addCriterion("CreateTime =", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotEqualTo(Date value) {
addCriterion("CreateTime <>", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThan(Date value) {
addCriterion("CreateTime >", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
addCriterion("CreateTime >=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThan(Date value) {
addCriterion("CreateTime <", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
addCriterion("CreateTime <=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeIn(List<Date> values) {
addCriterion("CreateTime in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotIn(List<Date> values) {
addCriterion("CreateTime not in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeBetween(Date value1, Date value2) {
addCriterion("CreateTime between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
addCriterion("CreateTime not between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNull() {
addCriterion("UpdateTime is null");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNotNull() {
addCriterion("UpdateTime is not null");
return (Criteria) this;
}
public Criteria andUpdateTimeEqualTo(Date value) {
addCriterion("UpdateTime =", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotEqualTo(Date value) {
addCriterion("UpdateTime <>", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThan(Date value) {
addCriterion("UpdateTime >", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
addCriterion("UpdateTime >=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThan(Date value) {
addCriterion("UpdateTime <", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
addCriterion("UpdateTime <=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeIn(List<Date> values) {
addCriterion("UpdateTime in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotIn(List<Date> values) {
addCriterion("UpdateTime not in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeBetween(Date value1, Date value2) {
addCriterion("UpdateTime between", value1, value2, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
addCriterion("UpdateTime not between", value1, value2, "updateTime");
return (Criteria) this;
}
public Criteria andIPIsNull() {
addCriterion("IP is null");
return (Criteria) this;
}
public Criteria andIPIsNotNull() {
addCriterion("IP is not null");
return (Criteria) this;
}
public Criteria andIPEqualTo(String value) {
addCriterion("IP =", value, "IP");
return (Criteria) this;
}
public Criteria andIPNotEqualTo(String value) {
addCriterion("IP <>", value, "IP");
return (Criteria) this;
}
public Criteria andIPGreaterThan(String value) {
addCriterion("IP >", value, "IP");
return (Criteria) this;
}
public Criteria andIPGreaterThanOrEqualTo(String value) {
addCriterion("IP >=", value, "IP");
return (Criteria) this;
}
public Criteria andIPLessThan(String value) {
addCriterion("IP <", value, "IP");
return (Criteria) this;
}
public Criteria andIPLessThanOrEqualTo(String value) {
addCriterion("IP <=", value, "IP");
return (Criteria) this;
}
public Criteria andIPLike(String value) {
addCriterion("IP like", value, "IP");
return (Criteria) this;
}
public Criteria andIPNotLike(String value) {
addCriterion("IP not like", value, "IP");
return (Criteria) this;
}
public Criteria andIPIn(List<String> values) {
addCriterion("IP in", values, "IP");
return (Criteria) this;
}
public Criteria andIPNotIn(List<String> values) {
addCriterion("IP not in", values, "IP");
return (Criteria) this;
}
public Criteria andIPBetween(String value1, String value2) {
addCriterion("IP between", value1, value2, "IP");
return (Criteria) this;
}
public Criteria andIPNotBetween(String value1, String value2) {
addCriterion("IP not between", value1, value2, "IP");
return (Criteria) this;
}
public Criteria andPeriodIsNull() {
addCriterion("Period is null");
return (Criteria) this;
}
public Criteria andPeriodIsNotNull() {
addCriterion("Period is not null");
return (Criteria) this;
}
public Criteria andPeriodEqualTo(Integer value) {
addCriterion("Period =", value, "period");
return (Criteria) this;
}
public Criteria andPeriodNotEqualTo(Integer value) {
addCriterion("Period <>", value, "period");
return (Criteria) this;
}
public Criteria andPeriodGreaterThan(Integer value) {
addCriterion("Period >", value, "period");
return (Criteria) this;
}
public Criteria andPeriodGreaterThanOrEqualTo(Integer value) {
addCriterion("Period >=", value, "period");
return (Criteria) this;
}
public Criteria andPeriodLessThan(Integer value) {
addCriterion("Period <", value, "period");
return (Criteria) this;
}
public Criteria andPeriodLessThanOrEqualTo(Integer value) {
addCriterion("Period <=", value, "period");
return (Criteria) this;
}
public Criteria andPeriodIn(List<Integer> values) {
addCriterion("Period in", values, "period");
return (Criteria) this;
}
public Criteria andPeriodNotIn(List<Integer> values) {
addCriterion("Period not in", values, "period");
return (Criteria) this;
}
public Criteria andPeriodBetween(Integer value1, Integer value2) {
addCriterion("Period between", value1, value2, "period");
return (Criteria) this;
}
public Criteria andPeriodNotBetween(Integer value1, Integer value2) {
addCriterion("Period not between", value1, value2, "period");
return (Criteria) this;
}
public Criteria andServiceTypeIsNull() {
addCriterion("ServiceType is null");
return (Criteria) this;
}
public Criteria andServiceTypeIsNotNull() {
addCriterion("ServiceType is not null");
return (Criteria) this;
}
public Criteria andServiceTypeEqualTo(Integer value) {
addCriterion("ServiceType =", value, "serviceType");
return (Criteria) this;
}
public Criteria andServiceTypeNotEqualTo(Integer value) {
addCriterion("ServiceType <>", value, "serviceType");
return (Criteria) this;
}
public Criteria andServiceTypeGreaterThan(Integer value) {
addCriterion("ServiceType >", value, "serviceType");
return (Criteria) this;
}
public Criteria andServiceTypeGreaterThanOrEqualTo(Integer value) {
addCriterion("ServiceType >=", value, "serviceType");
return (Criteria) this;
}
public Criteria andServiceTypeLessThan(Integer value) {
addCriterion("ServiceType <", value, "serviceType");
return (Criteria) this;
}
public Criteria andServiceTypeLessThanOrEqualTo(Integer value) {
addCriterion("ServiceType <=", value, "serviceType");
return (Criteria) this;
}
public Criteria andServiceTypeIn(List<Integer> values) {
addCriterion("ServiceType in", values, "serviceType");
return (Criteria) this;
}
public Criteria andServiceTypeNotIn(List<Integer> values) {
addCriterion("ServiceType not in", values, "serviceType");
return (Criteria) this;
}
public Criteria andServiceTypeBetween(Integer value1, Integer value2) {
addCriterion("ServiceType between", value1, value2, "serviceType");
return (Criteria) this;
}
public Criteria andServiceTypeNotBetween(Integer value1, Integer value2) {
addCriterion("ServiceType not between", value1, value2, "serviceType");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table OperationLog
*
* @mbg.generated do_not_delete_during_merge
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table OperationLog
*
* @mbg.generated
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}
\ No newline at end of file
package pwc.taxtech.atms.vatEntitiy;
import java.io.Serializable;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table StandardAccount
*
* @mbg.generated do_not_delete_during_merge
*/
public class VatStandardAccount implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.ID
*
* @mbg.generated
*/
private String ID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.Code
*
* @mbg.generated
*/
private String code;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.Name
*
* @mbg.generated
*/
private String name;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.ParentCode
*
* @mbg.generated
*/
private String parentCode;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.FullName
*
* @mbg.generated
*/
private String fullName;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.AcctProp
*
* @mbg.generated
*/
private Integer acctProp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.SubProp
*
* @mbg.generated
*/
private Integer subProp;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.AcctLevel
*
* @mbg.generated
*/
private Integer acctLevel;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.Direction
*
* @mbg.generated
*/
private Integer direction;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.IsLeaf
*
* @mbg.generated
*/
private Short isLeaf;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.RuleType
*
* @mbg.generated
*/
private Integer ruleType;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.IsActive
*
* @mbg.generated
*/
private Short isActive;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.EnglishName
*
* @mbg.generated
*/
private String englishName;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column StandardAccount.IndustryID
*
* @mbg.generated
*/
private String industryID;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table StandardAccount
*
* @mbg.generated
*/
private static final long serialVersionUID = 1L;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.ID
*
* @return the value of StandardAccount.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.ID
*
* @param ID the value for StandardAccount.ID
*
* @mbg.generated
*/
public void setID(String ID) {
this.ID = ID == null ? null : ID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.Code
*
* @return the value of StandardAccount.Code
*
* @mbg.generated
*/
public String getCode() {
return code;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.Code
*
* @param code the value for StandardAccount.Code
*
* @mbg.generated
*/
public void setCode(String code) {
this.code = code == null ? null : code.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.Name
*
* @return the value of StandardAccount.Name
*
* @mbg.generated
*/
public String getName() {
return name;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.Name
*
* @param name the value for StandardAccount.Name
*
* @mbg.generated
*/
public void setName(String name) {
this.name = name == null ? null : name.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.ParentCode
*
* @return the value of StandardAccount.ParentCode
*
* @mbg.generated
*/
public String getParentCode() {
return parentCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.ParentCode
*
* @param parentCode the value for StandardAccount.ParentCode
*
* @mbg.generated
*/
public void setParentCode(String parentCode) {
this.parentCode = parentCode == null ? null : parentCode.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.FullName
*
* @return the value of StandardAccount.FullName
*
* @mbg.generated
*/
public String getFullName() {
return fullName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.FullName
*
* @param fullName the value for StandardAccount.FullName
*
* @mbg.generated
*/
public void setFullName(String fullName) {
this.fullName = fullName == null ? null : fullName.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.AcctProp
*
* @return the value of StandardAccount.AcctProp
*
* @mbg.generated
*/
public Integer getAcctProp() {
return acctProp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.AcctProp
*
* @param acctProp the value for StandardAccount.AcctProp
*
* @mbg.generated
*/
public void setAcctProp(Integer acctProp) {
this.acctProp = acctProp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.SubProp
*
* @return the value of StandardAccount.SubProp
*
* @mbg.generated
*/
public Integer getSubProp() {
return subProp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.SubProp
*
* @param subProp the value for StandardAccount.SubProp
*
* @mbg.generated
*/
public void setSubProp(Integer subProp) {
this.subProp = subProp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.AcctLevel
*
* @return the value of StandardAccount.AcctLevel
*
* @mbg.generated
*/
public Integer getAcctLevel() {
return acctLevel;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.AcctLevel
*
* @param acctLevel the value for StandardAccount.AcctLevel
*
* @mbg.generated
*/
public void setAcctLevel(Integer acctLevel) {
this.acctLevel = acctLevel;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.Direction
*
* @return the value of StandardAccount.Direction
*
* @mbg.generated
*/
public Integer getDirection() {
return direction;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.Direction
*
* @param direction the value for StandardAccount.Direction
*
* @mbg.generated
*/
public void setDirection(Integer direction) {
this.direction = direction;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.IsLeaf
*
* @return the value of StandardAccount.IsLeaf
*
* @mbg.generated
*/
public Short getIsLeaf() {
return isLeaf;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.IsLeaf
*
* @param isLeaf the value for StandardAccount.IsLeaf
*
* @mbg.generated
*/
public void setIsLeaf(Short isLeaf) {
this.isLeaf = isLeaf;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.RuleType
*
* @return the value of StandardAccount.RuleType
*
* @mbg.generated
*/
public Integer getRuleType() {
return ruleType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.RuleType
*
* @param ruleType the value for StandardAccount.RuleType
*
* @mbg.generated
*/
public void setRuleType(Integer ruleType) {
this.ruleType = ruleType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.IsActive
*
* @return the value of StandardAccount.IsActive
*
* @mbg.generated
*/
public Short getIsActive() {
return isActive;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.IsActive
*
* @param isActive the value for StandardAccount.IsActive
*
* @mbg.generated
*/
public void setIsActive(Short isActive) {
this.isActive = isActive;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.EnglishName
*
* @return the value of StandardAccount.EnglishName
*
* @mbg.generated
*/
public String getEnglishName() {
return englishName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.EnglishName
*
* @param englishName the value for StandardAccount.EnglishName
*
* @mbg.generated
*/
public void setEnglishName(String englishName) {
this.englishName = englishName == null ? null : englishName.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column StandardAccount.IndustryID
*
* @return the value of StandardAccount.IndustryID
*
* @mbg.generated
*/
public String getIndustryID() {
return industryID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column StandardAccount.IndustryID
*
* @param industryID the value for StandardAccount.IndustryID
*
* @mbg.generated
*/
public void setIndustryID(String industryID) {
this.industryID = industryID == null ? null : industryID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", ID=").append(ID);
sb.append(", code=").append(code);
sb.append(", name=").append(name);
sb.append(", parentCode=").append(parentCode);
sb.append(", fullName=").append(fullName);
sb.append(", acctProp=").append(acctProp);
sb.append(", subProp=").append(subProp);
sb.append(", acctLevel=").append(acctLevel);
sb.append(", direction=").append(direction);
sb.append(", isLeaf=").append(isLeaf);
sb.append(", ruleType=").append(ruleType);
sb.append(", isActive=").append(isActive);
sb.append(", englishName=").append(englishName);
sb.append(", industryID=").append(industryID);
sb.append("]");
return sb.toString();
}
}
\ No newline at end of file
package pwc.taxtech.atms.vatEntitiy;
import java.util.ArrayList;
import java.util.List;
public class VatStandardAccountExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table StandardAccount
*
* @mbg.generated
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table StandardAccount
*
* @mbg.generated
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table StandardAccount
*
* @mbg.generated
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
public VatStandardAccountExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table StandardAccount
*
* @mbg.generated
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table StandardAccount
*
* @mbg.generated
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIDIsNull() {
addCriterion("ID is null");
return (Criteria) this;
}
public Criteria andIDIsNotNull() {
addCriterion("ID is not null");
return (Criteria) this;
}
public Criteria andIDEqualTo(String value) {
addCriterion("ID =", value, "ID");
return (Criteria) this;
}
public Criteria andIDNotEqualTo(String value) {
addCriterion("ID <>", value, "ID");
return (Criteria) this;
}
public Criteria andIDGreaterThan(String value) {
addCriterion("ID >", value, "ID");
return (Criteria) this;
}
public Criteria andIDGreaterThanOrEqualTo(String value) {
addCriterion("ID >=", value, "ID");
return (Criteria) this;
}
public Criteria andIDLessThan(String value) {
addCriterion("ID <", value, "ID");
return (Criteria) this;
}
public Criteria andIDLessThanOrEqualTo(String value) {
addCriterion("ID <=", value, "ID");
return (Criteria) this;
}
public Criteria andIDLike(String value) {
addCriterion("ID like", value, "ID");
return (Criteria) this;
}
public Criteria andIDNotLike(String value) {
addCriterion("ID not like", value, "ID");
return (Criteria) this;
}
public Criteria andIDIn(List<String> values) {
addCriterion("ID in", values, "ID");
return (Criteria) this;
}
public Criteria andIDNotIn(List<String> values) {
addCriterion("ID not in", values, "ID");
return (Criteria) this;
}
public Criteria andIDBetween(String value1, String value2) {
addCriterion("ID between", value1, value2, "ID");
return (Criteria) this;
}
public Criteria andIDNotBetween(String value1, String value2) {
addCriterion("ID not between", value1, value2, "ID");
return (Criteria) this;
}
public Criteria andCodeIsNull() {
addCriterion("Code is null");
return (Criteria) this;
}
public Criteria andCodeIsNotNull() {
addCriterion("Code is not null");
return (Criteria) this;
}
public Criteria andCodeEqualTo(String value) {
addCriterion("Code =", value, "code");
return (Criteria) this;
}
public Criteria andCodeNotEqualTo(String value) {
addCriterion("Code <>", value, "code");
return (Criteria) this;
}
public Criteria andCodeGreaterThan(String value) {
addCriterion("Code >", value, "code");
return (Criteria) this;
}
public Criteria andCodeGreaterThanOrEqualTo(String value) {
addCriterion("Code >=", value, "code");
return (Criteria) this;
}
public Criteria andCodeLessThan(String value) {
addCriterion("Code <", value, "code");
return (Criteria) this;
}
public Criteria andCodeLessThanOrEqualTo(String value) {
addCriterion("Code <=", value, "code");
return (Criteria) this;
}
public Criteria andCodeLike(String value) {
addCriterion("Code like", value, "code");
return (Criteria) this;
}
public Criteria andCodeNotLike(String value) {
addCriterion("Code not like", value, "code");
return (Criteria) this;
}
public Criteria andCodeIn(List<String> values) {
addCriterion("Code in", values, "code");
return (Criteria) this;
}
public Criteria andCodeNotIn(List<String> values) {
addCriterion("Code not in", values, "code");
return (Criteria) this;
}
public Criteria andCodeBetween(String value1, String value2) {
addCriterion("Code between", value1, value2, "code");
return (Criteria) this;
}
public Criteria andCodeNotBetween(String value1, String value2) {
addCriterion("Code not between", value1, value2, "code");
return (Criteria) this;
}
public Criteria andNameIsNull() {
addCriterion("Name is null");
return (Criteria) this;
}
public Criteria andNameIsNotNull() {
addCriterion("Name is not null");
return (Criteria) this;
}
public Criteria andNameEqualTo(String value) {
addCriterion("Name =", value, "name");
return (Criteria) this;
}
public Criteria andNameNotEqualTo(String value) {
addCriterion("Name <>", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThan(String value) {
addCriterion("Name >", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThanOrEqualTo(String value) {
addCriterion("Name >=", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThan(String value) {
addCriterion("Name <", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThanOrEqualTo(String value) {
addCriterion("Name <=", value, "name");
return (Criteria) this;
}
public Criteria andNameLike(String value) {
addCriterion("Name like", value, "name");
return (Criteria) this;
}
public Criteria andNameNotLike(String value) {
addCriterion("Name not like", value, "name");
return (Criteria) this;
}
public Criteria andNameIn(List<String> values) {
addCriterion("Name in", values, "name");
return (Criteria) this;
}
public Criteria andNameNotIn(List<String> values) {
addCriterion("Name not in", values, "name");
return (Criteria) this;
}
public Criteria andNameBetween(String value1, String value2) {
addCriterion("Name between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andNameNotBetween(String value1, String value2) {
addCriterion("Name not between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andParentCodeIsNull() {
addCriterion("ParentCode is null");
return (Criteria) this;
}
public Criteria andParentCodeIsNotNull() {
addCriterion("ParentCode is not null");
return (Criteria) this;
}
public Criteria andParentCodeEqualTo(String value) {
addCriterion("ParentCode =", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeNotEqualTo(String value) {
addCriterion("ParentCode <>", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeGreaterThan(String value) {
addCriterion("ParentCode >", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeGreaterThanOrEqualTo(String value) {
addCriterion("ParentCode >=", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeLessThan(String value) {
addCriterion("ParentCode <", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeLessThanOrEqualTo(String value) {
addCriterion("ParentCode <=", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeLike(String value) {
addCriterion("ParentCode like", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeNotLike(String value) {
addCriterion("ParentCode not like", value, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeIn(List<String> values) {
addCriterion("ParentCode in", values, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeNotIn(List<String> values) {
addCriterion("ParentCode not in", values, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeBetween(String value1, String value2) {
addCriterion("ParentCode between", value1, value2, "parentCode");
return (Criteria) this;
}
public Criteria andParentCodeNotBetween(String value1, String value2) {
addCriterion("ParentCode not between", value1, value2, "parentCode");
return (Criteria) this;
}
public Criteria andFullNameIsNull() {
addCriterion("FullName is null");
return (Criteria) this;
}
public Criteria andFullNameIsNotNull() {
addCriterion("FullName is not null");
return (Criteria) this;
}
public Criteria andFullNameEqualTo(String value) {
addCriterion("FullName =", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameNotEqualTo(String value) {
addCriterion("FullName <>", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameGreaterThan(String value) {
addCriterion("FullName >", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameGreaterThanOrEqualTo(String value) {
addCriterion("FullName >=", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameLessThan(String value) {
addCriterion("FullName <", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameLessThanOrEqualTo(String value) {
addCriterion("FullName <=", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameLike(String value) {
addCriterion("FullName like", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameNotLike(String value) {
addCriterion("FullName not like", value, "fullName");
return (Criteria) this;
}
public Criteria andFullNameIn(List<String> values) {
addCriterion("FullName in", values, "fullName");
return (Criteria) this;
}
public Criteria andFullNameNotIn(List<String> values) {
addCriterion("FullName not in", values, "fullName");
return (Criteria) this;
}
public Criteria andFullNameBetween(String value1, String value2) {
addCriterion("FullName between", value1, value2, "fullName");
return (Criteria) this;
}
public Criteria andFullNameNotBetween(String value1, String value2) {
addCriterion("FullName not between", value1, value2, "fullName");
return (Criteria) this;
}
public Criteria andAcctPropIsNull() {
addCriterion("AcctProp is null");
return (Criteria) this;
}
public Criteria andAcctPropIsNotNull() {
addCriterion("AcctProp is not null");
return (Criteria) this;
}
public Criteria andAcctPropEqualTo(Integer value) {
addCriterion("AcctProp =", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropNotEqualTo(Integer value) {
addCriterion("AcctProp <>", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropGreaterThan(Integer value) {
addCriterion("AcctProp >", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropGreaterThanOrEqualTo(Integer value) {
addCriterion("AcctProp >=", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropLessThan(Integer value) {
addCriterion("AcctProp <", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropLessThanOrEqualTo(Integer value) {
addCriterion("AcctProp <=", value, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropIn(List<Integer> values) {
addCriterion("AcctProp in", values, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropNotIn(List<Integer> values) {
addCriterion("AcctProp not in", values, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropBetween(Integer value1, Integer value2) {
addCriterion("AcctProp between", value1, value2, "acctProp");
return (Criteria) this;
}
public Criteria andAcctPropNotBetween(Integer value1, Integer value2) {
addCriterion("AcctProp not between", value1, value2, "acctProp");
return (Criteria) this;
}
public Criteria andSubPropIsNull() {
addCriterion("SubProp is null");
return (Criteria) this;
}
public Criteria andSubPropIsNotNull() {
addCriterion("SubProp is not null");
return (Criteria) this;
}
public Criteria andSubPropEqualTo(Integer value) {
addCriterion("SubProp =", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropNotEqualTo(Integer value) {
addCriterion("SubProp <>", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropGreaterThan(Integer value) {
addCriterion("SubProp >", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropGreaterThanOrEqualTo(Integer value) {
addCriterion("SubProp >=", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropLessThan(Integer value) {
addCriterion("SubProp <", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropLessThanOrEqualTo(Integer value) {
addCriterion("SubProp <=", value, "subProp");
return (Criteria) this;
}
public Criteria andSubPropIn(List<Integer> values) {
addCriterion("SubProp in", values, "subProp");
return (Criteria) this;
}
public Criteria andSubPropNotIn(List<Integer> values) {
addCriterion("SubProp not in", values, "subProp");
return (Criteria) this;
}
public Criteria andSubPropBetween(Integer value1, Integer value2) {
addCriterion("SubProp between", value1, value2, "subProp");
return (Criteria) this;
}
public Criteria andSubPropNotBetween(Integer value1, Integer value2) {
addCriterion("SubProp not between", value1, value2, "subProp");
return (Criteria) this;
}
public Criteria andAcctLevelIsNull() {
addCriterion("AcctLevel is null");
return (Criteria) this;
}
public Criteria andAcctLevelIsNotNull() {
addCriterion("AcctLevel is not null");
return (Criteria) this;
}
public Criteria andAcctLevelEqualTo(Integer value) {
addCriterion("AcctLevel =", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelNotEqualTo(Integer value) {
addCriterion("AcctLevel <>", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelGreaterThan(Integer value) {
addCriterion("AcctLevel >", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelGreaterThanOrEqualTo(Integer value) {
addCriterion("AcctLevel >=", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelLessThan(Integer value) {
addCriterion("AcctLevel <", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelLessThanOrEqualTo(Integer value) {
addCriterion("AcctLevel <=", value, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelIn(List<Integer> values) {
addCriterion("AcctLevel in", values, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelNotIn(List<Integer> values) {
addCriterion("AcctLevel not in", values, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelBetween(Integer value1, Integer value2) {
addCriterion("AcctLevel between", value1, value2, "acctLevel");
return (Criteria) this;
}
public Criteria andAcctLevelNotBetween(Integer value1, Integer value2) {
addCriterion("AcctLevel not between", value1, value2, "acctLevel");
return (Criteria) this;
}
public Criteria andDirectionIsNull() {
addCriterion("Direction is null");
return (Criteria) this;
}
public Criteria andDirectionIsNotNull() {
addCriterion("Direction is not null");
return (Criteria) this;
}
public Criteria andDirectionEqualTo(Integer value) {
addCriterion("Direction =", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionNotEqualTo(Integer value) {
addCriterion("Direction <>", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionGreaterThan(Integer value) {
addCriterion("Direction >", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionGreaterThanOrEqualTo(Integer value) {
addCriterion("Direction >=", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionLessThan(Integer value) {
addCriterion("Direction <", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionLessThanOrEqualTo(Integer value) {
addCriterion("Direction <=", value, "direction");
return (Criteria) this;
}
public Criteria andDirectionIn(List<Integer> values) {
addCriterion("Direction in", values, "direction");
return (Criteria) this;
}
public Criteria andDirectionNotIn(List<Integer> values) {
addCriterion("Direction not in", values, "direction");
return (Criteria) this;
}
public Criteria andDirectionBetween(Integer value1, Integer value2) {
addCriterion("Direction between", value1, value2, "direction");
return (Criteria) this;
}
public Criteria andDirectionNotBetween(Integer value1, Integer value2) {
addCriterion("Direction not between", value1, value2, "direction");
return (Criteria) this;
}
public Criteria andIsLeafIsNull() {
addCriterion("IsLeaf is null");
return (Criteria) this;
}
public Criteria andIsLeafIsNotNull() {
addCriterion("IsLeaf is not null");
return (Criteria) this;
}
public Criteria andIsLeafEqualTo(Short value) {
addCriterion("IsLeaf =", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafNotEqualTo(Short value) {
addCriterion("IsLeaf <>", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafGreaterThan(Short value) {
addCriterion("IsLeaf >", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafGreaterThanOrEqualTo(Short value) {
addCriterion("IsLeaf >=", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafLessThan(Short value) {
addCriterion("IsLeaf <", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafLessThanOrEqualTo(Short value) {
addCriterion("IsLeaf <=", value, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafIn(List<Short> values) {
addCriterion("IsLeaf in", values, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafNotIn(List<Short> values) {
addCriterion("IsLeaf not in", values, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafBetween(Short value1, Short value2) {
addCriterion("IsLeaf between", value1, value2, "isLeaf");
return (Criteria) this;
}
public Criteria andIsLeafNotBetween(Short value1, Short value2) {
addCriterion("IsLeaf not between", value1, value2, "isLeaf");
return (Criteria) this;
}
public Criteria andRuleTypeIsNull() {
addCriterion("RuleType is null");
return (Criteria) this;
}
public Criteria andRuleTypeIsNotNull() {
addCriterion("RuleType is not null");
return (Criteria) this;
}
public Criteria andRuleTypeEqualTo(Integer value) {
addCriterion("RuleType =", value, "ruleType");
return (Criteria) this;
}
public Criteria andRuleTypeNotEqualTo(Integer value) {
addCriterion("RuleType <>", value, "ruleType");
return (Criteria) this;
}
public Criteria andRuleTypeGreaterThan(Integer value) {
addCriterion("RuleType >", value, "ruleType");
return (Criteria) this;
}
public Criteria andRuleTypeGreaterThanOrEqualTo(Integer value) {
addCriterion("RuleType >=", value, "ruleType");
return (Criteria) this;
}
public Criteria andRuleTypeLessThan(Integer value) {
addCriterion("RuleType <", value, "ruleType");
return (Criteria) this;
}
public Criteria andRuleTypeLessThanOrEqualTo(Integer value) {
addCriterion("RuleType <=", value, "ruleType");
return (Criteria) this;
}
public Criteria andRuleTypeIn(List<Integer> values) {
addCriterion("RuleType in", values, "ruleType");
return (Criteria) this;
}
public Criteria andRuleTypeNotIn(List<Integer> values) {
addCriterion("RuleType not in", values, "ruleType");
return (Criteria) this;
}
public Criteria andRuleTypeBetween(Integer value1, Integer value2) {
addCriterion("RuleType between", value1, value2, "ruleType");
return (Criteria) this;
}
public Criteria andRuleTypeNotBetween(Integer value1, Integer value2) {
addCriterion("RuleType not between", value1, value2, "ruleType");
return (Criteria) this;
}
public Criteria andIsActiveIsNull() {
addCriterion("IsActive is null");
return (Criteria) this;
}
public Criteria andIsActiveIsNotNull() {
addCriterion("IsActive is not null");
return (Criteria) this;
}
public Criteria andIsActiveEqualTo(Short value) {
addCriterion("IsActive =", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveNotEqualTo(Short value) {
addCriterion("IsActive <>", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveGreaterThan(Short value) {
addCriterion("IsActive >", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveGreaterThanOrEqualTo(Short value) {
addCriterion("IsActive >=", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveLessThan(Short value) {
addCriterion("IsActive <", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveLessThanOrEqualTo(Short value) {
addCriterion("IsActive <=", value, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveIn(List<Short> values) {
addCriterion("IsActive in", values, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveNotIn(List<Short> values) {
addCriterion("IsActive not in", values, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveBetween(Short value1, Short value2) {
addCriterion("IsActive between", value1, value2, "isActive");
return (Criteria) this;
}
public Criteria andIsActiveNotBetween(Short value1, Short value2) {
addCriterion("IsActive not between", value1, value2, "isActive");
return (Criteria) this;
}
public Criteria andEnglishNameIsNull() {
addCriterion("EnglishName is null");
return (Criteria) this;
}
public Criteria andEnglishNameIsNotNull() {
addCriterion("EnglishName is not null");
return (Criteria) this;
}
public Criteria andEnglishNameEqualTo(String value) {
addCriterion("EnglishName =", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameNotEqualTo(String value) {
addCriterion("EnglishName <>", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameGreaterThan(String value) {
addCriterion("EnglishName >", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameGreaterThanOrEqualTo(String value) {
addCriterion("EnglishName >=", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameLessThan(String value) {
addCriterion("EnglishName <", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameLessThanOrEqualTo(String value) {
addCriterion("EnglishName <=", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameLike(String value) {
addCriterion("EnglishName like", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameNotLike(String value) {
addCriterion("EnglishName not like", value, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameIn(List<String> values) {
addCriterion("EnglishName in", values, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameNotIn(List<String> values) {
addCriterion("EnglishName not in", values, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameBetween(String value1, String value2) {
addCriterion("EnglishName between", value1, value2, "englishName");
return (Criteria) this;
}
public Criteria andEnglishNameNotBetween(String value1, String value2) {
addCriterion("EnglishName not between", value1, value2, "englishName");
return (Criteria) this;
}
public Criteria andIndustryIDIsNull() {
addCriterion("IndustryID is null");
return (Criteria) this;
}
public Criteria andIndustryIDIsNotNull() {
addCriterion("IndustryID is not null");
return (Criteria) this;
}
public Criteria andIndustryIDEqualTo(String value) {
addCriterion("IndustryID =", value, "industryID");
return (Criteria) this;
}
public Criteria andIndustryIDNotEqualTo(String value) {
addCriterion("IndustryID <>", value, "industryID");
return (Criteria) this;
}
public Criteria andIndustryIDGreaterThan(String value) {
addCriterion("IndustryID >", value, "industryID");
return (Criteria) this;
}
public Criteria andIndustryIDGreaterThanOrEqualTo(String value) {
addCriterion("IndustryID >=", value, "industryID");
return (Criteria) this;
}
public Criteria andIndustryIDLessThan(String value) {
addCriterion("IndustryID <", value, "industryID");
return (Criteria) this;
}
public Criteria andIndustryIDLessThanOrEqualTo(String value) {
addCriterion("IndustryID <=", value, "industryID");
return (Criteria) this;
}
public Criteria andIndustryIDLike(String value) {
addCriterion("IndustryID like", value, "industryID");
return (Criteria) this;
}
public Criteria andIndustryIDNotLike(String value) {
addCriterion("IndustryID not like", value, "industryID");
return (Criteria) this;
}
public Criteria andIndustryIDIn(List<String> values) {
addCriterion("IndustryID in", values, "industryID");
return (Criteria) this;
}
public Criteria andIndustryIDNotIn(List<String> values) {
addCriterion("IndustryID not in", values, "industryID");
return (Criteria) this;
}
public Criteria andIndustryIDBetween(String value1, String value2) {
addCriterion("IndustryID between", value1, value2, "industryID");
return (Criteria) this;
}
public Criteria andIndustryIDNotBetween(String value1, String value2) {
addCriterion("IndustryID not between", value1, value2, "industryID");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table StandardAccount
*
* @mbg.generated do_not_delete_during_merge
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table StandardAccount
*
* @mbg.generated
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}
\ No newline at end of file
<?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.VatEnterpriseAccountMapper">
<resultMap id="BaseResultMap" type="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<id column="ID" jdbcType="VARCHAR" property="ID" />
<result column="AcctCode" jdbcType="VARCHAR" property="acctCode" />
<result column="Name" jdbcType="VARCHAR" property="name" />
<result column="ParentCode" jdbcType="VARCHAR" property="parentCode" />
<result column="FullName" jdbcType="VARCHAR" property="fullName" />
<result column="AcctProp" jdbcType="INTEGER" property="acctProp" />
<result column="SubProp" jdbcType="INTEGER" property="subProp" />
<result column="AcctLevel" jdbcType="INTEGER" property="acctLevel" />
<result column="Direction" jdbcType="INTEGER" property="direction" />
<result column="IsLeaf" jdbcType="SMALLINT" property="isLeaf" />
<result column="IsActive" jdbcType="SMALLINT" property="isActive" />
<result column="EnglishName" jdbcType="VARCHAR" property="englishName" />
<result column="StdCode" jdbcType="VARCHAR" property="stdCode" />
<result column="EnterpriseAccountSetID" jdbcType="VARCHAR" property="enterpriseAccountSetID" />
<result column="IsDummy" jdbcType="INTEGER" property="isDummy" />
<result column="IsInVoucher" jdbcType="INTEGER" property="isInVoucher" />
<result column="CreatorID" jdbcType="VARCHAR" property="creatorID" />
<result column="UpdatorID" jdbcType="VARCHAR" property="updatorID" />
<result column="CreateTime" jdbcType="TIMESTAMP" property="createTime" />
<result column="UpdateTime" jdbcType="TIMESTAMP" property="updateTime" />
</resultMap>
<sql id="Example_Where_Clause">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<where>
<foreach collection="oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Update_By_Example_Where_Clause">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<where>
<foreach collection="example.oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Base_Column_List">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
ID, AcctCode, Name, ParentCode, FullName, AcctProp, SubProp, AcctLevel, Direction,
IsLeaf, IsActive, EnglishName, StdCode, EnterpriseAccountSetID, IsDummy, IsInVoucher,
CreatorID, UpdatorID, CreateTime, UpdateTime
</sql>
<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.
-->
select
<if test="distinct">
distinct
</if>
<include refid="Base_Column_List" />
from EnterpriseAccount
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
<if test="orderByClause != null">
order by ${orderByClause}
</if>
</select>
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
select
<include refid="Base_Column_List" />
from EnterpriseAccount
where ID = #{ID,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
delete from EnterpriseAccount
where ID = #{ID,jdbcType=VARCHAR}
</delete>
<delete id="deleteByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccountExample">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
delete from EnterpriseAccount
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
insert into EnterpriseAccount (ID, AcctCode, Name,
ParentCode, FullName, AcctProp,
SubProp, AcctLevel, Direction,
IsLeaf, IsActive, EnglishName,
StdCode, EnterpriseAccountSetID, IsDummy,
IsInVoucher, CreatorID, UpdatorID,
CreateTime, UpdateTime)
values (#{ID,jdbcType=VARCHAR}, #{acctCode,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
#{parentCode,jdbcType=VARCHAR}, #{fullName,jdbcType=VARCHAR}, #{acctProp,jdbcType=INTEGER},
#{subProp,jdbcType=INTEGER}, #{acctLevel,jdbcType=INTEGER}, #{direction,jdbcType=INTEGER},
#{isLeaf,jdbcType=SMALLINT}, #{isActive,jdbcType=SMALLINT}, #{englishName,jdbcType=VARCHAR},
#{stdCode,jdbcType=VARCHAR}, #{enterpriseAccountSetID,jdbcType=VARCHAR}, #{isDummy,jdbcType=INTEGER},
#{isInVoucher,jdbcType=INTEGER}, #{creatorID,jdbcType=VARCHAR}, #{updatorID,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP})
</insert>
<insert id="insertSelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
insert into EnterpriseAccount
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="ID != null">
ID,
</if>
<if test="acctCode != null">
AcctCode,
</if>
<if test="name != null">
Name,
</if>
<if test="parentCode != null">
ParentCode,
</if>
<if test="fullName != null">
FullName,
</if>
<if test="acctProp != null">
AcctProp,
</if>
<if test="subProp != null">
SubProp,
</if>
<if test="acctLevel != null">
AcctLevel,
</if>
<if test="direction != null">
Direction,
</if>
<if test="isLeaf != null">
IsLeaf,
</if>
<if test="isActive != null">
IsActive,
</if>
<if test="englishName != null">
EnglishName,
</if>
<if test="stdCode != null">
StdCode,
</if>
<if test="enterpriseAccountSetID != null">
EnterpriseAccountSetID,
</if>
<if test="isDummy != null">
IsDummy,
</if>
<if test="isInVoucher != null">
IsInVoucher,
</if>
<if test="creatorID != null">
CreatorID,
</if>
<if test="updatorID != null">
UpdatorID,
</if>
<if test="createTime != null">
CreateTime,
</if>
<if test="updateTime != null">
UpdateTime,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="ID != null">
#{ID,jdbcType=VARCHAR},
</if>
<if test="acctCode != null">
#{acctCode,jdbcType=VARCHAR},
</if>
<if test="name != null">
#{name,jdbcType=VARCHAR},
</if>
<if test="parentCode != null">
#{parentCode,jdbcType=VARCHAR},
</if>
<if test="fullName != null">
#{fullName,jdbcType=VARCHAR},
</if>
<if test="acctProp != null">
#{acctProp,jdbcType=INTEGER},
</if>
<if test="subProp != null">
#{subProp,jdbcType=INTEGER},
</if>
<if test="acctLevel != null">
#{acctLevel,jdbcType=INTEGER},
</if>
<if test="direction != null">
#{direction,jdbcType=INTEGER},
</if>
<if test="isLeaf != null">
#{isLeaf,jdbcType=SMALLINT},
</if>
<if test="isActive != null">
#{isActive,jdbcType=SMALLINT},
</if>
<if test="englishName != null">
#{englishName,jdbcType=VARCHAR},
</if>
<if test="stdCode != null">
#{stdCode,jdbcType=VARCHAR},
</if>
<if test="enterpriseAccountSetID != null">
#{enterpriseAccountSetID,jdbcType=VARCHAR},
</if>
<if test="isDummy != null">
#{isDummy,jdbcType=INTEGER},
</if>
<if test="isInVoucher != null">
#{isInVoucher,jdbcType=INTEGER},
</if>
<if test="creatorID != null">
#{creatorID,jdbcType=VARCHAR},
</if>
<if test="updatorID != null">
#{updatorID,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
#{createTime,jdbcType=TIMESTAMP},
</if>
<if test="updateTime != null">
#{updateTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<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.
-->
select count(*) from EnterpriseAccount
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</select>
<update id="updateByExampleSelective" parameterType="map">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update EnterpriseAccount
<set>
<if test="record.ID != null">
ID = #{record.ID,jdbcType=VARCHAR},
</if>
<if test="record.acctCode != null">
AcctCode = #{record.acctCode,jdbcType=VARCHAR},
</if>
<if test="record.name != null">
Name = #{record.name,jdbcType=VARCHAR},
</if>
<if test="record.parentCode != null">
ParentCode = #{record.parentCode,jdbcType=VARCHAR},
</if>
<if test="record.fullName != null">
FullName = #{record.fullName,jdbcType=VARCHAR},
</if>
<if test="record.acctProp != null">
AcctProp = #{record.acctProp,jdbcType=INTEGER},
</if>
<if test="record.subProp != null">
SubProp = #{record.subProp,jdbcType=INTEGER},
</if>
<if test="record.acctLevel != null">
AcctLevel = #{record.acctLevel,jdbcType=INTEGER},
</if>
<if test="record.direction != null">
Direction = #{record.direction,jdbcType=INTEGER},
</if>
<if test="record.isLeaf != null">
IsLeaf = #{record.isLeaf,jdbcType=SMALLINT},
</if>
<if test="record.isActive != null">
IsActive = #{record.isActive,jdbcType=SMALLINT},
</if>
<if test="record.englishName != null">
EnglishName = #{record.englishName,jdbcType=VARCHAR},
</if>
<if test="record.stdCode != null">
StdCode = #{record.stdCode,jdbcType=VARCHAR},
</if>
<if test="record.enterpriseAccountSetID != null">
EnterpriseAccountSetID = #{record.enterpriseAccountSetID,jdbcType=VARCHAR},
</if>
<if test="record.isDummy != null">
IsDummy = #{record.isDummy,jdbcType=INTEGER},
</if>
<if test="record.isInVoucher != null">
IsInVoucher = #{record.isInVoucher,jdbcType=INTEGER},
</if>
<if test="record.creatorID != null">
CreatorID = #{record.creatorID,jdbcType=VARCHAR},
</if>
<if test="record.updatorID != null">
UpdatorID = #{record.updatorID,jdbcType=VARCHAR},
</if>
<if test="record.createTime != null">
CreateTime = #{record.createTime,jdbcType=TIMESTAMP},
</if>
<if test="record.updateTime != null">
UpdateTime = #{record.updateTime,jdbcType=TIMESTAMP},
</if>
</set>
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByExample" parameterType="map">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update EnterpriseAccount
set ID = #{record.ID,jdbcType=VARCHAR},
AcctCode = #{record.acctCode,jdbcType=VARCHAR},
Name = #{record.name,jdbcType=VARCHAR},
ParentCode = #{record.parentCode,jdbcType=VARCHAR},
FullName = #{record.fullName,jdbcType=VARCHAR},
AcctProp = #{record.acctProp,jdbcType=INTEGER},
SubProp = #{record.subProp,jdbcType=INTEGER},
AcctLevel = #{record.acctLevel,jdbcType=INTEGER},
Direction = #{record.direction,jdbcType=INTEGER},
IsLeaf = #{record.isLeaf,jdbcType=SMALLINT},
IsActive = #{record.isActive,jdbcType=SMALLINT},
EnglishName = #{record.englishName,jdbcType=VARCHAR},
StdCode = #{record.stdCode,jdbcType=VARCHAR},
EnterpriseAccountSetID = #{record.enterpriseAccountSetID,jdbcType=VARCHAR},
IsDummy = #{record.isDummy,jdbcType=INTEGER},
IsInVoucher = #{record.isInVoucher,jdbcType=INTEGER},
CreatorID = #{record.creatorID,jdbcType=VARCHAR},
UpdatorID = #{record.updatorID,jdbcType=VARCHAR},
CreateTime = #{record.createTime,jdbcType=TIMESTAMP},
UpdateTime = #{record.updateTime,jdbcType=TIMESTAMP}
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update EnterpriseAccount
<set>
<if test="acctCode != null">
AcctCode = #{acctCode,jdbcType=VARCHAR},
</if>
<if test="name != null">
Name = #{name,jdbcType=VARCHAR},
</if>
<if test="parentCode != null">
ParentCode = #{parentCode,jdbcType=VARCHAR},
</if>
<if test="fullName != null">
FullName = #{fullName,jdbcType=VARCHAR},
</if>
<if test="acctProp != null">
AcctProp = #{acctProp,jdbcType=INTEGER},
</if>
<if test="subProp != null">
SubProp = #{subProp,jdbcType=INTEGER},
</if>
<if test="acctLevel != null">
AcctLevel = #{acctLevel,jdbcType=INTEGER},
</if>
<if test="direction != null">
Direction = #{direction,jdbcType=INTEGER},
</if>
<if test="isLeaf != null">
IsLeaf = #{isLeaf,jdbcType=SMALLINT},
</if>
<if test="isActive != null">
IsActive = #{isActive,jdbcType=SMALLINT},
</if>
<if test="englishName != null">
EnglishName = #{englishName,jdbcType=VARCHAR},
</if>
<if test="stdCode != null">
StdCode = #{stdCode,jdbcType=VARCHAR},
</if>
<if test="enterpriseAccountSetID != null">
EnterpriseAccountSetID = #{enterpriseAccountSetID,jdbcType=VARCHAR},
</if>
<if test="isDummy != null">
IsDummy = #{isDummy,jdbcType=INTEGER},
</if>
<if test="isInVoucher != null">
IsInVoucher = #{isInVoucher,jdbcType=INTEGER},
</if>
<if test="creatorID != null">
CreatorID = #{creatorID,jdbcType=VARCHAR},
</if>
<if test="updatorID != null">
UpdatorID = #{updatorID,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
CreateTime = #{createTime,jdbcType=TIMESTAMP},
</if>
<if test="updateTime != null">
UpdateTime = #{updateTime,jdbcType=TIMESTAMP},
</if>
</set>
where ID = #{ID,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="pwc.taxtech.atms.vatEntitiy.VatEnterpriseAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update EnterpriseAccount
set AcctCode = #{acctCode,jdbcType=VARCHAR},
Name = #{name,jdbcType=VARCHAR},
ParentCode = #{parentCode,jdbcType=VARCHAR},
FullName = #{fullName,jdbcType=VARCHAR},
AcctProp = #{acctProp,jdbcType=INTEGER},
SubProp = #{subProp,jdbcType=INTEGER},
AcctLevel = #{acctLevel,jdbcType=INTEGER},
Direction = #{direction,jdbcType=INTEGER},
IsLeaf = #{isLeaf,jdbcType=SMALLINT},
IsActive = #{isActive,jdbcType=SMALLINT},
EnglishName = #{englishName,jdbcType=VARCHAR},
StdCode = #{stdCode,jdbcType=VARCHAR},
EnterpriseAccountSetID = #{enterpriseAccountSetID,jdbcType=VARCHAR},
IsDummy = #{isDummy,jdbcType=INTEGER},
IsInVoucher = #{isInVoucher,jdbcType=INTEGER},
CreatorID = #{creatorID,jdbcType=VARCHAR},
UpdatorID = #{updatorID,jdbcType=VARCHAR},
CreateTime = #{createTime,jdbcType=TIMESTAMP},
UpdateTime = #{updateTime,jdbcType=TIMESTAMP}
where ID = #{ID,jdbcType=VARCHAR}
</update>
<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.
-->
select
<if test="distinct">
distinct
</if>
<include refid="Base_Column_List" />
from EnterpriseAccount
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
<if test="orderByClause != null">
order by ${orderByClause}
</if>
</select>
</mapper>
\ No newline at end of file
<?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.VatOperationLogMapper">
<resultMap id="BaseResultMap" type="pwc.taxtech.atms.vatEntitiy.VatOperationLog">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<id column="ID" jdbcType="VARCHAR" property="ID" />
<result column="OperationName" jdbcType="VARCHAR" property="operationName" />
<result column="ModuleID" jdbcType="INTEGER" property="moduleID" />
<result column="OperationObject" jdbcType="VARCHAR" property="operationObject" />
<result column="OperationType" jdbcType="INTEGER" property="operationType" />
<result column="OperationContent" jdbcType="VARCHAR" property="operationContent" />
<result column="OriginalState" jdbcType="VARCHAR" property="originalState" />
<result column="UpdateState" jdbcType="VARCHAR" property="updateState" />
<result column="CreatorID" jdbcType="VARCHAR" property="creatorID" />
<result column="Comment" jdbcType="VARCHAR" property="comment" />
<result column="CreateTime" jdbcType="TIMESTAMP" property="createTime" />
<result column="UpdateTime" jdbcType="TIMESTAMP" property="updateTime" />
<result column="IP" jdbcType="VARCHAR" property="IP" />
<result column="Period" jdbcType="INTEGER" property="period" />
<result column="ServiceType" jdbcType="INTEGER" property="serviceType" />
</resultMap>
<sql id="Example_Where_Clause">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<where>
<foreach collection="oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Update_By_Example_Where_Clause">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<where>
<foreach collection="example.oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Base_Column_List">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
ID, OperationName, ModuleID, OperationObject, OperationType, OperationContent, OriginalState,
UpdateState, CreatorID, Comment, CreateTime, UpdateTime, IP, Period, ServiceType
</sql>
<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.
-->
select
<if test="distinct">
distinct
</if>
<include refid="Base_Column_List" />
from OperationLog
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
<if test="orderByClause != null">
order by ${orderByClause}
</if>
</select>
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
select
<include refid="Base_Column_List" />
from OperationLog
where ID = #{ID,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
delete from OperationLog
where ID = #{ID,jdbcType=VARCHAR}
</delete>
<delete id="deleteByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLogExample">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
delete from OperationLog
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLog">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
insert into OperationLog (ID, OperationName, ModuleID,
OperationObject, OperationType, OperationContent,
OriginalState, UpdateState, CreatorID,
Comment, CreateTime, UpdateTime,
IP, Period, ServiceType
)
values (#{ID,jdbcType=VARCHAR}, #{operationName,jdbcType=VARCHAR}, #{moduleID,jdbcType=INTEGER},
#{operationObject,jdbcType=VARCHAR}, #{operationType,jdbcType=INTEGER}, #{operationContent,jdbcType=VARCHAR},
#{originalState,jdbcType=VARCHAR}, #{updateState,jdbcType=VARCHAR}, #{creatorID,jdbcType=VARCHAR},
#{comment,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP},
#{IP,jdbcType=VARCHAR}, #{period,jdbcType=INTEGER}, #{serviceType,jdbcType=INTEGER}
)
</insert>
<insert id="insertSelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLog">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
insert into OperationLog
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="ID != null">
ID,
</if>
<if test="operationName != null">
OperationName,
</if>
<if test="moduleID != null">
ModuleID,
</if>
<if test="operationObject != null">
OperationObject,
</if>
<if test="operationType != null">
OperationType,
</if>
<if test="operationContent != null">
OperationContent,
</if>
<if test="originalState != null">
OriginalState,
</if>
<if test="updateState != null">
UpdateState,
</if>
<if test="creatorID != null">
CreatorID,
</if>
<if test="comment != null">
Comment,
</if>
<if test="createTime != null">
CreateTime,
</if>
<if test="updateTime != null">
UpdateTime,
</if>
<if test="IP != null">
IP,
</if>
<if test="period != null">
Period,
</if>
<if test="serviceType != null">
ServiceType,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="ID != null">
#{ID,jdbcType=VARCHAR},
</if>
<if test="operationName != null">
#{operationName,jdbcType=VARCHAR},
</if>
<if test="moduleID != null">
#{moduleID,jdbcType=INTEGER},
</if>
<if test="operationObject != null">
#{operationObject,jdbcType=VARCHAR},
</if>
<if test="operationType != null">
#{operationType,jdbcType=INTEGER},
</if>
<if test="operationContent != null">
#{operationContent,jdbcType=VARCHAR},
</if>
<if test="originalState != null">
#{originalState,jdbcType=VARCHAR},
</if>
<if test="updateState != null">
#{updateState,jdbcType=VARCHAR},
</if>
<if test="creatorID != null">
#{creatorID,jdbcType=VARCHAR},
</if>
<if test="comment != null">
#{comment,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
#{createTime,jdbcType=TIMESTAMP},
</if>
<if test="updateTime != null">
#{updateTime,jdbcType=TIMESTAMP},
</if>
<if test="IP != null">
#{IP,jdbcType=VARCHAR},
</if>
<if test="period != null">
#{period,jdbcType=INTEGER},
</if>
<if test="serviceType != null">
#{serviceType,jdbcType=INTEGER},
</if>
</trim>
</insert>
<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.
-->
select count(*) from OperationLog
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</select>
<update id="updateByExampleSelective" parameterType="map">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update OperationLog
<set>
<if test="record.ID != null">
ID = #{record.ID,jdbcType=VARCHAR},
</if>
<if test="record.operationName != null">
OperationName = #{record.operationName,jdbcType=VARCHAR},
</if>
<if test="record.moduleID != null">
ModuleID = #{record.moduleID,jdbcType=INTEGER},
</if>
<if test="record.operationObject != null">
OperationObject = #{record.operationObject,jdbcType=VARCHAR},
</if>
<if test="record.operationType != null">
OperationType = #{record.operationType,jdbcType=INTEGER},
</if>
<if test="record.operationContent != null">
OperationContent = #{record.operationContent,jdbcType=VARCHAR},
</if>
<if test="record.originalState != null">
OriginalState = #{record.originalState,jdbcType=VARCHAR},
</if>
<if test="record.updateState != null">
UpdateState = #{record.updateState,jdbcType=VARCHAR},
</if>
<if test="record.creatorID != null">
CreatorID = #{record.creatorID,jdbcType=VARCHAR},
</if>
<if test="record.comment != null">
Comment = #{record.comment,jdbcType=VARCHAR},
</if>
<if test="record.createTime != null">
CreateTime = #{record.createTime,jdbcType=TIMESTAMP},
</if>
<if test="record.updateTime != null">
UpdateTime = #{record.updateTime,jdbcType=TIMESTAMP},
</if>
<if test="record.IP != null">
IP = #{record.IP,jdbcType=VARCHAR},
</if>
<if test="record.period != null">
Period = #{record.period,jdbcType=INTEGER},
</if>
<if test="record.serviceType != null">
ServiceType = #{record.serviceType,jdbcType=INTEGER},
</if>
</set>
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByExample" parameterType="map">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update OperationLog
set ID = #{record.ID,jdbcType=VARCHAR},
OperationName = #{record.operationName,jdbcType=VARCHAR},
ModuleID = #{record.moduleID,jdbcType=INTEGER},
OperationObject = #{record.operationObject,jdbcType=VARCHAR},
OperationType = #{record.operationType,jdbcType=INTEGER},
OperationContent = #{record.operationContent,jdbcType=VARCHAR},
OriginalState = #{record.originalState,jdbcType=VARCHAR},
UpdateState = #{record.updateState,jdbcType=VARCHAR},
CreatorID = #{record.creatorID,jdbcType=VARCHAR},
Comment = #{record.comment,jdbcType=VARCHAR},
CreateTime = #{record.createTime,jdbcType=TIMESTAMP},
UpdateTime = #{record.updateTime,jdbcType=TIMESTAMP},
IP = #{record.IP,jdbcType=VARCHAR},
Period = #{record.period,jdbcType=INTEGER},
ServiceType = #{record.serviceType,jdbcType=INTEGER}
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLog">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update OperationLog
<set>
<if test="operationName != null">
OperationName = #{operationName,jdbcType=VARCHAR},
</if>
<if test="moduleID != null">
ModuleID = #{moduleID,jdbcType=INTEGER},
</if>
<if test="operationObject != null">
OperationObject = #{operationObject,jdbcType=VARCHAR},
</if>
<if test="operationType != null">
OperationType = #{operationType,jdbcType=INTEGER},
</if>
<if test="operationContent != null">
OperationContent = #{operationContent,jdbcType=VARCHAR},
</if>
<if test="originalState != null">
OriginalState = #{originalState,jdbcType=VARCHAR},
</if>
<if test="updateState != null">
UpdateState = #{updateState,jdbcType=VARCHAR},
</if>
<if test="creatorID != null">
CreatorID = #{creatorID,jdbcType=VARCHAR},
</if>
<if test="comment != null">
Comment = #{comment,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
CreateTime = #{createTime,jdbcType=TIMESTAMP},
</if>
<if test="updateTime != null">
UpdateTime = #{updateTime,jdbcType=TIMESTAMP},
</if>
<if test="IP != null">
IP = #{IP,jdbcType=VARCHAR},
</if>
<if test="period != null">
Period = #{period,jdbcType=INTEGER},
</if>
<if test="serviceType != null">
ServiceType = #{serviceType,jdbcType=INTEGER},
</if>
</set>
where ID = #{ID,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="pwc.taxtech.atms.vatEntitiy.VatOperationLog">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update OperationLog
set OperationName = #{operationName,jdbcType=VARCHAR},
ModuleID = #{moduleID,jdbcType=INTEGER},
OperationObject = #{operationObject,jdbcType=VARCHAR},
OperationType = #{operationType,jdbcType=INTEGER},
OperationContent = #{operationContent,jdbcType=VARCHAR},
OriginalState = #{originalState,jdbcType=VARCHAR},
UpdateState = #{updateState,jdbcType=VARCHAR},
CreatorID = #{creatorID,jdbcType=VARCHAR},
Comment = #{comment,jdbcType=VARCHAR},
CreateTime = #{createTime,jdbcType=TIMESTAMP},
UpdateTime = #{updateTime,jdbcType=TIMESTAMP},
IP = #{IP,jdbcType=VARCHAR},
Period = #{period,jdbcType=INTEGER},
ServiceType = #{serviceType,jdbcType=INTEGER}
where ID = #{ID,jdbcType=VARCHAR}
</update>
<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.
-->
select
<if test="distinct">
distinct
</if>
<include refid="Base_Column_List" />
from OperationLog
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
<if test="orderByClause != null">
order by ${orderByClause}
</if>
</select>
</mapper>
\ No newline at end of file
<?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.VatStandardAccountMapper">
<resultMap id="BaseResultMap" type="pwc.taxtech.atms.vatEntitiy.VatStandardAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<id column="ID" jdbcType="VARCHAR" property="ID" />
<result column="Code" jdbcType="VARCHAR" property="code" />
<result column="Name" jdbcType="VARCHAR" property="name" />
<result column="ParentCode" jdbcType="VARCHAR" property="parentCode" />
<result column="FullName" jdbcType="VARCHAR" property="fullName" />
<result column="AcctProp" jdbcType="INTEGER" property="acctProp" />
<result column="SubProp" jdbcType="INTEGER" property="subProp" />
<result column="AcctLevel" jdbcType="INTEGER" property="acctLevel" />
<result column="Direction" jdbcType="INTEGER" property="direction" />
<result column="IsLeaf" jdbcType="SMALLINT" property="isLeaf" />
<result column="RuleType" jdbcType="INTEGER" property="ruleType" />
<result column="IsActive" jdbcType="SMALLINT" property="isActive" />
<result column="EnglishName" jdbcType="VARCHAR" property="englishName" />
<result column="IndustryID" jdbcType="VARCHAR" property="industryID" />
</resultMap>
<sql id="Example_Where_Clause">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<where>
<foreach collection="oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Update_By_Example_Where_Clause">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<where>
<foreach collection="example.oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Base_Column_List">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
ID, Code, Name, ParentCode, FullName, AcctProp, SubProp, AcctLevel, Direction, IsLeaf,
RuleType, IsActive, EnglishName, IndustryID
</sql>
<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.
-->
select
<if test="distinct">
distinct
</if>
<include refid="Base_Column_List" />
from StandardAccount
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
<if test="orderByClause != null">
order by ${orderByClause}
</if>
</select>
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
select
<include refid="Base_Column_List" />
from StandardAccount
where ID = #{ID,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
delete from StandardAccount
where ID = #{ID,jdbcType=VARCHAR}
</delete>
<delete id="deleteByExample" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccountExample">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
delete from StandardAccount
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
insert into StandardAccount (ID, Code, Name,
ParentCode, FullName, AcctProp,
SubProp, AcctLevel, Direction,
IsLeaf, RuleType, IsActive,
EnglishName, IndustryID)
values (#{ID,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
#{parentCode,jdbcType=VARCHAR}, #{fullName,jdbcType=VARCHAR}, #{acctProp,jdbcType=INTEGER},
#{subProp,jdbcType=INTEGER}, #{acctLevel,jdbcType=INTEGER}, #{direction,jdbcType=INTEGER},
#{isLeaf,jdbcType=SMALLINT}, #{ruleType,jdbcType=INTEGER}, #{isActive,jdbcType=SMALLINT},
#{englishName,jdbcType=VARCHAR}, #{industryID,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
insert into StandardAccount
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="ID != null">
ID,
</if>
<if test="code != null">
Code,
</if>
<if test="name != null">
Name,
</if>
<if test="parentCode != null">
ParentCode,
</if>
<if test="fullName != null">
FullName,
</if>
<if test="acctProp != null">
AcctProp,
</if>
<if test="subProp != null">
SubProp,
</if>
<if test="acctLevel != null">
AcctLevel,
</if>
<if test="direction != null">
Direction,
</if>
<if test="isLeaf != null">
IsLeaf,
</if>
<if test="ruleType != null">
RuleType,
</if>
<if test="isActive != null">
IsActive,
</if>
<if test="englishName != null">
EnglishName,
</if>
<if test="industryID != null">
IndustryID,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="ID != null">
#{ID,jdbcType=VARCHAR},
</if>
<if test="code != null">
#{code,jdbcType=VARCHAR},
</if>
<if test="name != null">
#{name,jdbcType=VARCHAR},
</if>
<if test="parentCode != null">
#{parentCode,jdbcType=VARCHAR},
</if>
<if test="fullName != null">
#{fullName,jdbcType=VARCHAR},
</if>
<if test="acctProp != null">
#{acctProp,jdbcType=INTEGER},
</if>
<if test="subProp != null">
#{subProp,jdbcType=INTEGER},
</if>
<if test="acctLevel != null">
#{acctLevel,jdbcType=INTEGER},
</if>
<if test="direction != null">
#{direction,jdbcType=INTEGER},
</if>
<if test="isLeaf != null">
#{isLeaf,jdbcType=SMALLINT},
</if>
<if test="ruleType != null">
#{ruleType,jdbcType=INTEGER},
</if>
<if test="isActive != null">
#{isActive,jdbcType=SMALLINT},
</if>
<if test="englishName != null">
#{englishName,jdbcType=VARCHAR},
</if>
<if test="industryID != null">
#{industryID,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<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.
-->
select count(*) from StandardAccount
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</select>
<update id="updateByExampleSelective" parameterType="map">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update StandardAccount
<set>
<if test="record.ID != null">
ID = #{record.ID,jdbcType=VARCHAR},
</if>
<if test="record.code != null">
Code = #{record.code,jdbcType=VARCHAR},
</if>
<if test="record.name != null">
Name = #{record.name,jdbcType=VARCHAR},
</if>
<if test="record.parentCode != null">
ParentCode = #{record.parentCode,jdbcType=VARCHAR},
</if>
<if test="record.fullName != null">
FullName = #{record.fullName,jdbcType=VARCHAR},
</if>
<if test="record.acctProp != null">
AcctProp = #{record.acctProp,jdbcType=INTEGER},
</if>
<if test="record.subProp != null">
SubProp = #{record.subProp,jdbcType=INTEGER},
</if>
<if test="record.acctLevel != null">
AcctLevel = #{record.acctLevel,jdbcType=INTEGER},
</if>
<if test="record.direction != null">
Direction = #{record.direction,jdbcType=INTEGER},
</if>
<if test="record.isLeaf != null">
IsLeaf = #{record.isLeaf,jdbcType=SMALLINT},
</if>
<if test="record.ruleType != null">
RuleType = #{record.ruleType,jdbcType=INTEGER},
</if>
<if test="record.isActive != null">
IsActive = #{record.isActive,jdbcType=SMALLINT},
</if>
<if test="record.englishName != null">
EnglishName = #{record.englishName,jdbcType=VARCHAR},
</if>
<if test="record.industryID != null">
IndustryID = #{record.industryID,jdbcType=VARCHAR},
</if>
</set>
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByExample" parameterType="map">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update StandardAccount
set ID = #{record.ID,jdbcType=VARCHAR},
Code = #{record.code,jdbcType=VARCHAR},
Name = #{record.name,jdbcType=VARCHAR},
ParentCode = #{record.parentCode,jdbcType=VARCHAR},
FullName = #{record.fullName,jdbcType=VARCHAR},
AcctProp = #{record.acctProp,jdbcType=INTEGER},
SubProp = #{record.subProp,jdbcType=INTEGER},
AcctLevel = #{record.acctLevel,jdbcType=INTEGER},
Direction = #{record.direction,jdbcType=INTEGER},
IsLeaf = #{record.isLeaf,jdbcType=SMALLINT},
RuleType = #{record.ruleType,jdbcType=INTEGER},
IsActive = #{record.isActive,jdbcType=SMALLINT},
EnglishName = #{record.englishName,jdbcType=VARCHAR},
IndustryID = #{record.industryID,jdbcType=VARCHAR}
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update StandardAccount
<set>
<if test="code != null">
Code = #{code,jdbcType=VARCHAR},
</if>
<if test="name != null">
Name = #{name,jdbcType=VARCHAR},
</if>
<if test="parentCode != null">
ParentCode = #{parentCode,jdbcType=VARCHAR},
</if>
<if test="fullName != null">
FullName = #{fullName,jdbcType=VARCHAR},
</if>
<if test="acctProp != null">
AcctProp = #{acctProp,jdbcType=INTEGER},
</if>
<if test="subProp != null">
SubProp = #{subProp,jdbcType=INTEGER},
</if>
<if test="acctLevel != null">
AcctLevel = #{acctLevel,jdbcType=INTEGER},
</if>
<if test="direction != null">
Direction = #{direction,jdbcType=INTEGER},
</if>
<if test="isLeaf != null">
IsLeaf = #{isLeaf,jdbcType=SMALLINT},
</if>
<if test="ruleType != null">
RuleType = #{ruleType,jdbcType=INTEGER},
</if>
<if test="isActive != null">
IsActive = #{isActive,jdbcType=SMALLINT},
</if>
<if test="englishName != null">
EnglishName = #{englishName,jdbcType=VARCHAR},
</if>
<if test="industryID != null">
IndustryID = #{industryID,jdbcType=VARCHAR},
</if>
</set>
where ID = #{ID,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="pwc.taxtech.atms.vatEntitiy.VatStandardAccount">
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update StandardAccount
set Code = #{code,jdbcType=VARCHAR},
Name = #{name,jdbcType=VARCHAR},
ParentCode = #{parentCode,jdbcType=VARCHAR},
FullName = #{fullName,jdbcType=VARCHAR},
AcctProp = #{acctProp,jdbcType=INTEGER},
SubProp = #{subProp,jdbcType=INTEGER},
AcctLevel = #{acctLevel,jdbcType=INTEGER},
Direction = #{direction,jdbcType=INTEGER},
IsLeaf = #{isLeaf,jdbcType=SMALLINT},
RuleType = #{ruleType,jdbcType=INTEGER},
IsActive = #{isActive,jdbcType=SMALLINT},
EnglishName = #{englishName,jdbcType=VARCHAR},
IndustryID = #{industryID,jdbcType=VARCHAR}
where ID = #{ID,jdbcType=VARCHAR}
</update>
<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.
-->
select
<if test="distinct">
distinct
</if>
<include refid="Base_Column_List" />
from StandardAccount
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
<if test="orderByClause != null">
order by ${orderByClause}
</if>
</select>
</mapper>
\ 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