Commit 00ce6fbc authored by eddie.woo's avatar eddie.woo

add

parent 50f6a44d
package pwc.taxtech.atms.dao;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
import pwc.taxtech.atms.MyMapper;
import pwc.taxtech.atms.entitiy.AccountMappingManual;
import pwc.taxtech.atms.entitiy.AccountMappingManualExample;
@Mapper
public interface AccountMappingManualMapper extends MyMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
long countByExample(AccountMappingManualExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int deleteByExample(AccountMappingManualExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int deleteByPrimaryKey(String ID);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int insert(AccountMappingManual record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int insertSelective(AccountMappingManual record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
List<AccountMappingManual> selectByExampleWithRowbounds(AccountMappingManualExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
List<AccountMappingManual> selectByExample(AccountMappingManualExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
AccountMappingManual selectByPrimaryKey(String ID);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") AccountMappingManual record, @Param("example") AccountMappingManualExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int updateByExample(@Param("record") AccountMappingManual record, @Param("example") AccountMappingManualExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(AccountMappingManual record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
int updateByPrimaryKey(AccountMappingManual record);
}
\ No newline at end of file
package pwc.taxtech.atms.entitiy;
import java.io.Serializable;
import java.util.Date;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table AccountMappingManual
*
* @mbg.generated do_not_delete_during_merge
*/
public class AccountMappingManual implements Serializable {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.ID
*
* @mbg.generated
*/
private String ID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.StandardCode
*
* @mbg.generated
*/
private String standardCode;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.FullName
*
* @mbg.generated
*/
private String fullName;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.EnterpriseAccountSetID
*
* @mbg.generated
*/
private String enterpriseAccountSetID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.OrganizationID
*
* @mbg.generated
*/
private String organizationID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.IndustryID
*
* @mbg.generated
*/
private String industryID;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.UpdateTime
*
* @mbg.generated
*/
private Date updateTime;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column AccountMappingManual.UpdateBy
*
* @mbg.generated
*/
private String updateBy;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table AccountMappingManual
*
* @mbg.generated
*/
private static final long serialVersionUID = 1L;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.ID
*
* @return the value of AccountMappingManual.ID
*
* @mbg.generated
*/
public String getID() {
return ID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.ID
*
* @param ID the value for AccountMappingManual.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 AccountMappingManual.StandardCode
*
* @return the value of AccountMappingManual.StandardCode
*
* @mbg.generated
*/
public String getStandardCode() {
return standardCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.StandardCode
*
* @param standardCode the value for AccountMappingManual.StandardCode
*
* @mbg.generated
*/
public void setStandardCode(String standardCode) {
this.standardCode = standardCode == null ? null : standardCode.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.FullName
*
* @return the value of AccountMappingManual.FullName
*
* @mbg.generated
*/
public String getFullName() {
return fullName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.FullName
*
* @param fullName the value for AccountMappingManual.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 AccountMappingManual.EnterpriseAccountSetID
*
* @return the value of AccountMappingManual.EnterpriseAccountSetID
*
* @mbg.generated
*/
public String getEnterpriseAccountSetID() {
return enterpriseAccountSetID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.EnterpriseAccountSetID
*
* @param enterpriseAccountSetID the value for AccountMappingManual.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 AccountMappingManual.OrganizationID
*
* @return the value of AccountMappingManual.OrganizationID
*
* @mbg.generated
*/
public String getOrganizationID() {
return organizationID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.OrganizationID
*
* @param organizationID the value for AccountMappingManual.OrganizationID
*
* @mbg.generated
*/
public void setOrganizationID(String organizationID) {
this.organizationID = organizationID == null ? null : organizationID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.IndustryID
*
* @return the value of AccountMappingManual.IndustryID
*
* @mbg.generated
*/
public String getIndustryID() {
return industryID;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.IndustryID
*
* @param industryID the value for AccountMappingManual.IndustryID
*
* @mbg.generated
*/
public void setIndustryID(String industryID) {
this.industryID = industryID == null ? null : industryID.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column AccountMappingManual.UpdateTime
*
* @return the value of AccountMappingManual.UpdateTime
*
* @mbg.generated
*/
public Date getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.UpdateTime
*
* @param updateTime the value for AccountMappingManual.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 AccountMappingManual.UpdateBy
*
* @return the value of AccountMappingManual.UpdateBy
*
* @mbg.generated
*/
public String getUpdateBy() {
return updateBy;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column AccountMappingManual.UpdateBy
*
* @param updateBy the value for AccountMappingManual.UpdateBy
*
* @mbg.generated
*/
public void setUpdateBy(String updateBy) {
this.updateBy = updateBy == null ? null : updateBy.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table AccountMappingManual
*
* @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(", standardCode=").append(standardCode);
sb.append(", fullName=").append(fullName);
sb.append(", enterpriseAccountSetID=").append(enterpriseAccountSetID);
sb.append(", organizationID=").append(organizationID);
sb.append(", industryID=").append(industryID);
sb.append(", updateTime=").append(updateTime);
sb.append(", updateBy=").append(updateBy);
sb.append("]");
return sb.toString();
}
}
\ 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