Commit 402d08a1 authored by 胡小根's avatar 胡小根

coding

parent cdc07521
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.ActivityHasUser;
import com.haomostudio.SpringMVCProjectTemplate.domain.ActivityHasUserExample;
import com.haomostudio.SpringMVCProjectTemplate.domain.ActivityHasUserKey;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActivityHasUserMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(ActivityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(ActivityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(ActivityHasUserKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(ActivityHasUser record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(ActivityHasUser record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ActivityHasUser> selectByExampleWithRowbounds(ActivityHasUserExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ActivityHasUser> selectByExample(ActivityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
ActivityHasUser selectByPrimaryKey(ActivityHasUserKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") ActivityHasUser record, @Param("example") ActivityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") ActivityHasUser record, @Param("example") ActivityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(ActivityHasUser record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(ActivityHasUser record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.Activity;
import com.haomostudio.SpringMVCProjectTemplate.domain.ActivityExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActivityMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(ActivityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(ActivityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(Activity record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(Activity record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Activity> selectByExampleWithRowbounds(ActivityExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Activity> selectByExample(ActivityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
Activity selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") Activity record, @Param("example") ActivityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") Activity record, @Param("example") ActivityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(Activity record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(Activity record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.ActivityType;
import com.haomostudio.SpringMVCProjectTemplate.domain.ActivityTypeExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActivityTypeMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(ActivityTypeExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(ActivityTypeExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(ActivityType record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(ActivityType record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ActivityType> selectByExampleWithRowbounds(ActivityTypeExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ActivityType> selectByExample(ActivityTypeExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
ActivityType selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") ActivityType record, @Param("example") ActivityTypeExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") ActivityType record, @Param("example") ActivityTypeExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(ActivityType record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table activity_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(ActivityType record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.AddressBook;
import com.haomostudio.SpringMVCProjectTemplate.domain.AddressBookExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface AddressBookMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(AddressBookExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(AddressBookExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(AddressBook record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(AddressBook record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AddressBook> selectByExampleWithRowbounds(AddressBookExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AddressBook> selectByExample(AddressBookExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
AddressBook selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") AddressBook record, @Param("example") AddressBookExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") AddressBook record, @Param("example") AddressBookExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(AddressBook record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address_book
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(AddressBook record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.Address;
import com.haomostudio.SpringMVCProjectTemplate.domain.AddressExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface AddressMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(AddressExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(AddressExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(Address record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(Address record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Address> selectByExampleWithRowbounds(AddressExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Address> selectByExample(AddressExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
Address selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") Address record, @Param("example") AddressExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") Address record, @Param("example") AddressExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(Address record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(Address record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.AdminLog;
import com.haomostudio.SpringMVCProjectTemplate.domain.AdminLogExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface AdminLogMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(AdminLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(AdminLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(AdminLog record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(AdminLog record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AdminLog> selectByExampleWithBLOBsWithRowbounds(AdminLogExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AdminLog> selectByExampleWithBLOBs(AdminLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AdminLog> selectByExampleWithRowbounds(AdminLogExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AdminLog> selectByExample(AdminLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
AdminLog selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") AdminLog record, @Param("example") AdminLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") AdminLog record, @Param("example") AdminLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") AdminLog record, @Param("example") AdminLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(AdminLog record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(AdminLog record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table admin_log
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(AdminLog record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.ArticleComment;
import com.haomostudio.SpringMVCProjectTemplate.domain.ArticleCommentExample;
import com.haomostudio.SpringMVCProjectTemplate.domain.ArticleCommentKey;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ArticleCommentMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(ArticleCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(ArticleCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(ArticleCommentKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(ArticleComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(ArticleComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ArticleComment> selectByExampleWithBLOBsWithRowbounds(ArticleCommentExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ArticleComment> selectByExampleWithBLOBs(ArticleCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ArticleComment> selectByExampleWithRowbounds(ArticleCommentExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ArticleComment> selectByExample(ArticleCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
ArticleComment selectByPrimaryKey(ArticleCommentKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") ArticleComment record, @Param("example") ArticleCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") ArticleComment record, @Param("example") ArticleCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") ArticleComment record, @Param("example") ArticleCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(ArticleComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(ArticleComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(ArticleComment record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.Article;
import com.haomostudio.SpringMVCProjectTemplate.domain.ArticleExample;
import com.haomostudio.SpringMVCProjectTemplate.domain.ArticleWithBLOBs;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ArticleMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(ArticleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(ArticleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(ArticleWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(ArticleWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ArticleWithBLOBs> selectByExampleWithBLOBsWithRowbounds(ArticleExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ArticleWithBLOBs> selectByExampleWithBLOBs(ArticleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Article> selectByExampleWithRowbounds(ArticleExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Article> selectByExample(ArticleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
ArticleWithBLOBs selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") ArticleWithBLOBs record, @Param("example") ArticleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") ArticleWithBLOBs record, @Param("example") ArticleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") Article record, @Param("example") ArticleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(ArticleWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(ArticleWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(Article record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.ArticleVisitCount;
import com.haomostudio.SpringMVCProjectTemplate.domain.ArticleVisitCountExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ArticleVisitCountMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_visit_count
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(ArticleVisitCountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_visit_count
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(ArticleVisitCountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_visit_count
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(ArticleVisitCount record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_visit_count
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(ArticleVisitCount record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_visit_count
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ArticleVisitCount> selectByExampleWithRowbounds(ArticleVisitCountExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_visit_count
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<ArticleVisitCount> selectByExample(ArticleVisitCountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_visit_count
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") ArticleVisitCount record, @Param("example") ArticleVisitCountExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_visit_count
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") ArticleVisitCount record, @Param("example") ArticleVisitCountExample example);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.AuthAssignment;
import com.haomostudio.SpringMVCProjectTemplate.domain.AuthAssignmentExample;
import com.haomostudio.SpringMVCProjectTemplate.domain.AuthAssignmentKey;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface AuthAssignmentMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(AuthAssignmentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(AuthAssignmentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(AuthAssignmentKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(AuthAssignment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(AuthAssignment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthAssignment> selectByExampleWithRowbounds(AuthAssignmentExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthAssignment> selectByExample(AuthAssignmentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
AuthAssignment selectByPrimaryKey(AuthAssignmentKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") AuthAssignment record, @Param("example") AuthAssignmentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") AuthAssignment record, @Param("example") AuthAssignmentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(AuthAssignment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_assignment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(AuthAssignment record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.AuthItemChildExample;
import com.haomostudio.SpringMVCProjectTemplate.domain.AuthItemChildKey;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface AuthItemChildMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item_child
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(AuthItemChildExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item_child
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(AuthItemChildExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item_child
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(AuthItemChildKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item_child
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(AuthItemChildKey record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item_child
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(AuthItemChildKey record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item_child
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthItemChildKey> selectByExampleWithRowbounds(AuthItemChildExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item_child
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthItemChildKey> selectByExample(AuthItemChildExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item_child
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") AuthItemChildKey record, @Param("example") AuthItemChildExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item_child
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") AuthItemChildKey record, @Param("example") AuthItemChildExample example);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.AuthItem;
import com.haomostudio.SpringMVCProjectTemplate.domain.AuthItemExample;
import com.haomostudio.SpringMVCProjectTemplate.domain.AuthItemWithBLOBs;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface AuthItemMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(AuthItemExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(AuthItemExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(String name);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(AuthItemWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(AuthItemWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthItemWithBLOBs> selectByExampleWithBLOBsWithRowbounds(AuthItemExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthItemWithBLOBs> selectByExampleWithBLOBs(AuthItemExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthItem> selectByExampleWithRowbounds(AuthItemExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthItem> selectByExample(AuthItemExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
AuthItemWithBLOBs selectByPrimaryKey(String name);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") AuthItemWithBLOBs record, @Param("example") AuthItemExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") AuthItemWithBLOBs record, @Param("example") AuthItemExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") AuthItem record, @Param("example") AuthItemExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(AuthItemWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(AuthItemWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_item
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(AuthItem record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.AuthRule;
import com.haomostudio.SpringMVCProjectTemplate.domain.AuthRuleExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface AuthRuleMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(AuthRuleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(AuthRuleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(String name);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(AuthRule record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(AuthRule record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthRule> selectByExampleWithBLOBsWithRowbounds(AuthRuleExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthRule> selectByExampleWithBLOBs(AuthRuleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthRule> selectByExampleWithRowbounds(AuthRuleExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<AuthRule> selectByExample(AuthRuleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
AuthRule selectByPrimaryKey(String name);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") AuthRule record, @Param("example") AuthRuleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") AuthRule record, @Param("example") AuthRuleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") AuthRule record, @Param("example") AuthRuleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(AuthRule record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(AuthRule record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table auth_rule
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(AuthRule record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.CategoryL1;
import com.haomostudio.SpringMVCProjectTemplate.domain.CategoryL1Example;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CategoryL1Mapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CategoryL1Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CategoryL1Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CategoryL1 record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CategoryL1 record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CategoryL1> selectByExampleWithBLOBsWithRowbounds(CategoryL1Example example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CategoryL1> selectByExampleWithBLOBs(CategoryL1Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CategoryL1> selectByExampleWithRowbounds(CategoryL1Example example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CategoryL1> selectByExample(CategoryL1Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CategoryL1 selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CategoryL1 record, @Param("example") CategoryL1Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") CategoryL1 record, @Param("example") CategoryL1Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") CategoryL1 record, @Param("example") CategoryL1Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CategoryL1 record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(CategoryL1 record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l1
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(CategoryL1 record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.CategoryL2;
import com.haomostudio.SpringMVCProjectTemplate.domain.CategoryL2Example;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CategoryL2Mapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CategoryL2Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CategoryL2Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CategoryL2 record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CategoryL2 record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CategoryL2> selectByExampleWithBLOBsWithRowbounds(CategoryL2Example example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CategoryL2> selectByExampleWithBLOBs(CategoryL2Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CategoryL2> selectByExampleWithRowbounds(CategoryL2Example example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CategoryL2> selectByExample(CategoryL2Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CategoryL2 selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CategoryL2 record, @Param("example") CategoryL2Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") CategoryL2 record, @Param("example") CategoryL2Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") CategoryL2 record, @Param("example") CategoryL2Example example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CategoryL2 record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(CategoryL2 record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table category_l2
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(CategoryL2 record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.Certification;
import com.haomostudio.SpringMVCProjectTemplate.domain.CertificationExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CertificationMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(Certification record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(Certification record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Certification> selectByExampleWithBLOBsWithRowbounds(CertificationExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Certification> selectByExampleWithBLOBs(CertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Certification> selectByExampleWithRowbounds(CertificationExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Certification> selectByExample(CertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
Certification selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") Certification record, @Param("example") CertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") Certification record, @Param("example") CertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") Certification record, @Param("example") CertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(Certification record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(Certification record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(Certification record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.City;
import com.haomostudio.SpringMVCProjectTemplate.domain.CityExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CityMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer city_id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(City record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(City record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<City> selectByExampleWithRowbounds(CityExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<City> selectByExample(CityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
City selectByPrimaryKey(Integer city_id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") City record, @Param("example") CityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") City record, @Param("example") CityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(City record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table city
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(City record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.CommunityHasUser;
import com.haomostudio.SpringMVCProjectTemplate.domain.CommunityHasUserExample;
import com.haomostudio.SpringMVCProjectTemplate.domain.CommunityHasUserKey;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CommunityHasUserMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CommunityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CommunityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(CommunityHasUserKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CommunityHasUser record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CommunityHasUser record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CommunityHasUser> selectByExampleWithBLOBsWithRowbounds(CommunityHasUserExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CommunityHasUser> selectByExampleWithBLOBs(CommunityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CommunityHasUser> selectByExampleWithRowbounds(CommunityHasUserExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CommunityHasUser> selectByExample(CommunityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CommunityHasUser selectByPrimaryKey(CommunityHasUserKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CommunityHasUser record, @Param("example") CommunityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") CommunityHasUser record, @Param("example") CommunityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") CommunityHasUser record, @Param("example") CommunityHasUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CommunityHasUser record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(CommunityHasUser record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community_has_user
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(CommunityHasUser record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.Community;
import com.haomostudio.SpringMVCProjectTemplate.domain.CommunityExample;
import com.haomostudio.SpringMVCProjectTemplate.domain.CommunityWithBLOBs;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CommunityMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CommunityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CommunityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CommunityWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CommunityWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CommunityWithBLOBs> selectByExampleWithBLOBsWithRowbounds(CommunityExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CommunityWithBLOBs> selectByExampleWithBLOBs(CommunityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Community> selectByExampleWithRowbounds(CommunityExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Community> selectByExample(CommunityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CommunityWithBLOBs selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CommunityWithBLOBs record, @Param("example") CommunityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") CommunityWithBLOBs record, @Param("example") CommunityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") Community record, @Param("example") CommunityExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CommunityWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(CommunityWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table community
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(Community record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.Country;
import com.haomostudio.SpringMVCProjectTemplate.domain.CountryExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CountryMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CountryExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CountryExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer country_id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(Country record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(Country record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Country> selectByExampleWithRowbounds(CountryExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Country> selectByExample(CountryExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
Country selectByPrimaryKey(Integer country_id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") Country record, @Param("example") CountryExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") Country record, @Param("example") CountryExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(Country record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table country
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(Country record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.County;
import com.haomostudio.SpringMVCProjectTemplate.domain.CountyExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CountyMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CountyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CountyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer county_id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(County record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(County record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<County> selectByExampleWithRowbounds(CountyExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<County> selectByExample(CountyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
County selectByPrimaryKey(Integer county_id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") County record, @Param("example") CountyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") County record, @Param("example") CountyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(County record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table county
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(County record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.Crowdfunding;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowdfundingExample;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowdfundingWithBLOBs;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CrowdfundingMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CrowdfundingWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CrowdfundingWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingWithBLOBs> selectByExampleWithBLOBsWithRowbounds(CrowdfundingExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingWithBLOBs> selectByExampleWithBLOBs(CrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Crowdfunding> selectByExampleWithRowbounds(CrowdfundingExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Crowdfunding> selectByExample(CrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CrowdfundingWithBLOBs selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CrowdfundingWithBLOBs record, @Param("example") CrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") CrowdfundingWithBLOBs record, @Param("example") CrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") Crowdfunding record, @Param("example") CrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CrowdfundingWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(CrowdfundingWithBLOBs record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(Crowdfunding record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowdfundingOrder;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowdfundingOrderExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CrowdfundingOrderMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CrowdfundingOrderExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CrowdfundingOrderExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CrowdfundingOrder record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CrowdfundingOrder record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingOrder> selectByExampleWithBLOBsWithRowbounds(CrowdfundingOrderExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingOrder> selectByExampleWithBLOBs(CrowdfundingOrderExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingOrder> selectByExampleWithRowbounds(CrowdfundingOrderExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingOrder> selectByExample(CrowdfundingOrderExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CrowdfundingOrder selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CrowdfundingOrder record, @Param("example") CrowdfundingOrderExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") CrowdfundingOrder record, @Param("example") CrowdfundingOrderExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") CrowdfundingOrder record, @Param("example") CrowdfundingOrderExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CrowdfundingOrder record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(CrowdfundingOrder record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_order
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(CrowdfundingOrder record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowdfundingTeamHasCrowdfunding;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowdfundingTeamHasCrowdfundingExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CrowdfundingTeamHasCrowdfundingMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CrowdfundingTeamHasCrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CrowdfundingTeamHasCrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CrowdfundingTeamHasCrowdfunding record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CrowdfundingTeamHasCrowdfunding record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingTeamHasCrowdfunding> selectByExampleWithRowbounds(CrowdfundingTeamHasCrowdfundingExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingTeamHasCrowdfunding> selectByExample(CrowdfundingTeamHasCrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CrowdfundingTeamHasCrowdfunding selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CrowdfundingTeamHasCrowdfunding record, @Param("example") CrowdfundingTeamHasCrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") CrowdfundingTeamHasCrowdfunding record, @Param("example") CrowdfundingTeamHasCrowdfundingExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CrowdfundingTeamHasCrowdfunding record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team_has_crowdfunding
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(CrowdfundingTeamHasCrowdfunding record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowdfundingTeam;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowdfundingTeamExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CrowdfundingTeamMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CrowdfundingTeamExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CrowdfundingTeamExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CrowdfundingTeam record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CrowdfundingTeam record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingTeam> selectByExampleWithRowbounds(CrowdfundingTeamExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingTeam> selectByExample(CrowdfundingTeamExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CrowdfundingTeam selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CrowdfundingTeam record, @Param("example") CrowdfundingTeamExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") CrowdfundingTeam record, @Param("example") CrowdfundingTeamExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CrowdfundingTeam record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_team
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(CrowdfundingTeam record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowdfundingType;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowdfundingTypeExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CrowdfundingTypeMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CrowdfundingTypeExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CrowdfundingTypeExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CrowdfundingType record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CrowdfundingType record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingType> selectByExampleWithRowbounds(CrowdfundingTypeExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowdfundingType> selectByExample(CrowdfundingTypeExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CrowdfundingType selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CrowdfundingType record, @Param("example") CrowdfundingTypeExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") CrowdfundingType record, @Param("example") CrowdfundingTypeExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CrowdfundingType record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowdfunding_type
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(CrowdfundingType record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowfundingCertification;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowfundingCertificationExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CrowfundingCertificationMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CrowfundingCertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CrowfundingCertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CrowfundingCertification record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CrowfundingCertification record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowfundingCertification> selectByExampleWithBLOBsWithRowbounds(CrowfundingCertificationExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowfundingCertification> selectByExampleWithBLOBs(CrowfundingCertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowfundingCertification> selectByExampleWithRowbounds(CrowfundingCertificationExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowfundingCertification> selectByExample(CrowfundingCertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CrowfundingCertification selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CrowfundingCertification record, @Param("example") CrowfundingCertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") CrowfundingCertification record, @Param("example") CrowfundingCertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") CrowfundingCertification record, @Param("example") CrowfundingCertificationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CrowfundingCertification record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(CrowfundingCertification record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_certification
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(CrowfundingCertification record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowfundingComment;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowfundingCommentExample;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowfundingCommentKey;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CrowfundingCommentMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CrowfundingCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CrowfundingCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(CrowfundingCommentKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CrowfundingComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CrowfundingComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowfundingComment> selectByExampleWithBLOBsWithRowbounds(CrowfundingCommentExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowfundingComment> selectByExampleWithBLOBs(CrowfundingCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowfundingComment> selectByExampleWithRowbounds(CrowfundingCommentExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowfundingComment> selectByExample(CrowfundingCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CrowfundingComment selectByPrimaryKey(CrowfundingCommentKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CrowfundingComment record, @Param("example") CrowfundingCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") CrowfundingComment record, @Param("example") CrowfundingCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") CrowfundingComment record, @Param("example") CrowfundingCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CrowfundingComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(CrowfundingComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_comment
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(CrowfundingComment record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowfundingField;
import com.haomostudio.SpringMVCProjectTemplate.domain.CrowfundingFieldExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CrowfundingFieldMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(CrowfundingFieldExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(CrowfundingFieldExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(CrowfundingField record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(CrowfundingField record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowfundingField> selectByExampleWithRowbounds(CrowfundingFieldExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<CrowfundingField> selectByExample(CrowfundingFieldExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
CrowfundingField selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") CrowfundingField record, @Param("example") CrowfundingFieldExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") CrowfundingField record, @Param("example") CrowfundingFieldExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(CrowfundingField record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table crowfunding_field
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(CrowfundingField record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.EvaluationCashFlow;
import com.haomostudio.SpringMVCProjectTemplate.domain.EvaluationCashFlowExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface EvaluationCashFlowMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(EvaluationCashFlowExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(EvaluationCashFlowExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(EvaluationCashFlow record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(EvaluationCashFlow record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<EvaluationCashFlow> selectByExampleWithRowbounds(EvaluationCashFlowExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<EvaluationCashFlow> selectByExample(EvaluationCashFlowExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
EvaluationCashFlow selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") EvaluationCashFlow record, @Param("example") EvaluationCashFlowExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") EvaluationCashFlow record, @Param("example") EvaluationCashFlowExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(EvaluationCashFlow record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cash_flow
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(EvaluationCashFlow record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.EvaluationCost;
import com.haomostudio.SpringMVCProjectTemplate.domain.EvaluationCostExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface EvaluationCostMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(EvaluationCostExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(EvaluationCostExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(EvaluationCost record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(EvaluationCost record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<EvaluationCost> selectByExampleWithRowbounds(EvaluationCostExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<EvaluationCost> selectByExample(EvaluationCostExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
EvaluationCost selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") EvaluationCost record, @Param("example") EvaluationCostExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") EvaluationCost record, @Param("example") EvaluationCostExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(EvaluationCost record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_cost
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(EvaluationCost record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.EvaluationEquityRevenue;
import com.haomostudio.SpringMVCProjectTemplate.domain.EvaluationEquityRevenueExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface EvaluationEquityRevenueMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(EvaluationEquityRevenueExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(EvaluationEquityRevenueExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(EvaluationEquityRevenue record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(EvaluationEquityRevenue record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<EvaluationEquityRevenue> selectByExampleWithRowbounds(EvaluationEquityRevenueExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<EvaluationEquityRevenue> selectByExample(EvaluationEquityRevenueExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
EvaluationEquityRevenue selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") EvaluationEquityRevenue record, @Param("example") EvaluationEquityRevenueExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") EvaluationEquityRevenue record, @Param("example") EvaluationEquityRevenueExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(EvaluationEquityRevenue record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table evaluation_equity_revenue
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(EvaluationEquityRevenue record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.IcInfo;
import com.haomostudio.SpringMVCProjectTemplate.domain.IcInfoExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface IcInfoMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(IcInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(IcInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(IcInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(IcInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<IcInfo> selectByExampleWithRowbounds(IcInfoExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<IcInfo> selectByExample(IcInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
IcInfo selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") IcInfo record, @Param("example") IcInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") IcInfo record, @Param("example") IcInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(IcInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ic_info
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(IcInfo record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.Image;
import com.haomostudio.SpringMVCProjectTemplate.domain.ImageExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ImageMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(ImageExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(ImageExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(Image record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(Image record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Image> selectByExampleWithRowbounds(ImageExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Image> selectByExample(ImageExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
Image selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") Image record, @Param("example") ImageExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") Image record, @Param("example") ImageExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(Image record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table image
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(Image record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.InstituteDetail;
import com.haomostudio.SpringMVCProjectTemplate.domain.InstituteDetailExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface InstituteDetailMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(InstituteDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(InstituteDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(InstituteDetail record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(InstituteDetail record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<InstituteDetail> selectByExampleWithBLOBsWithRowbounds(InstituteDetailExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<InstituteDetail> selectByExampleWithBLOBs(InstituteDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<InstituteDetail> selectByExampleWithRowbounds(InstituteDetailExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<InstituteDetail> selectByExample(InstituteDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
InstituteDetail selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") InstituteDetail record, @Param("example") InstituteDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleWithBLOBs(@Param("record") InstituteDetail record, @Param("example") InstituteDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") InstituteDetail record, @Param("example") InstituteDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(InstituteDetail record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeyWithBLOBs(InstituteDetail record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institute_detail
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(InstituteDetail record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.Milestone;
import com.haomostudio.SpringMVCProjectTemplate.domain.MilestoneExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface MilestoneMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(MilestoneExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(MilestoneExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(Milestone record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(Milestone record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Milestone> selectByExampleWithRowbounds(MilestoneExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Milestone> selectByExample(MilestoneExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
Milestone selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") Milestone record, @Param("example") MilestoneExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") Milestone record, @Param("example") MilestoneExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(Milestone record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table milestone
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(Milestone record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningAddress;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningAddressExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface MiningAddressMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(MiningAddressExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(MiningAddressExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(MiningAddress record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(MiningAddress record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningAddress> selectByExampleWithRowbounds(MiningAddressExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningAddress> selectByExample(MiningAddressExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
MiningAddress selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") MiningAddress record, @Param("example") MiningAddressExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") MiningAddress record, @Param("example") MiningAddressExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(MiningAddress record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_address
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(MiningAddress record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningRightEvaluation;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningRightEvaluationExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface MiningRightEvaluationMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(MiningRightEvaluationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(MiningRightEvaluationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(MiningRightEvaluation record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(MiningRightEvaluation record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningRightEvaluation> selectByExampleWithRowbounds(MiningRightEvaluationExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningRightEvaluation> selectByExample(MiningRightEvaluationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
MiningRightEvaluation selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") MiningRightEvaluation record, @Param("example") MiningRightEvaluationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") MiningRightEvaluation record, @Param("example") MiningRightEvaluationExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(MiningRightEvaluation record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_evaluation
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(MiningRightEvaluation record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningRightFirst;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningRightFirstExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface MiningRightFirstMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(MiningRightFirstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(MiningRightFirstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(MiningRightFirst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(MiningRightFirst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningRightFirst> selectByExampleWithRowbounds(MiningRightFirstExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningRightFirst> selectByExample(MiningRightFirstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
MiningRightFirst selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") MiningRightFirst record, @Param("example") MiningRightFirstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") MiningRightFirst record, @Param("example") MiningRightFirstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(MiningRightFirst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(MiningRightFirst record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningRightSecond;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningRightSecondExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface MiningRightSecondMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(MiningRightSecondExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(MiningRightSecondExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(MiningRightSecond record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(MiningRightSecond record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningRightSecond> selectByExampleWithRowbounds(MiningRightSecondExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningRightSecond> selectByExample(MiningRightSecondExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
MiningRightSecond selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") MiningRightSecond record, @Param("example") MiningRightSecondExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") MiningRightSecond record, @Param("example") MiningRightSecondExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(MiningRightSecond record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_right_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(MiningRightSecond record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningTypeFirst;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningTypeFirstExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface MiningTypeFirstMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(MiningTypeFirstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(MiningTypeFirstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(MiningTypeFirst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(MiningTypeFirst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningTypeFirst> selectByExampleWithRowbounds(MiningTypeFirstExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningTypeFirst> selectByExample(MiningTypeFirstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
MiningTypeFirst selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") MiningTypeFirst record, @Param("example") MiningTypeFirstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") MiningTypeFirst record, @Param("example") MiningTypeFirstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(MiningTypeFirst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_first
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(MiningTypeFirst record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningTypeSecond;
import com.haomostudio.SpringMVCProjectTemplate.domain.MiningTypeSecondExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface MiningTypeSecondMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(MiningTypeSecondExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(MiningTypeSecondExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(MiningTypeSecond record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(MiningTypeSecond record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningTypeSecond> selectByExampleWithRowbounds(MiningTypeSecondExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<MiningTypeSecond> selectByExample(MiningTypeSecondExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
MiningTypeSecond selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") MiningTypeSecond record, @Param("example") MiningTypeSecondExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") MiningTypeSecond record, @Param("example") MiningTypeSecondExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(MiningTypeSecond record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table mining_type_second
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(MiningTypeSecond record);
}
\ No newline at end of file
package com.haomostudio.SpringMVCProjectTemplate.dao;
import com.haomostudio.SpringMVCProjectTemplate.domain.Oauth;
import com.haomostudio.SpringMVCProjectTemplate.domain.OauthExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface OauthMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
long countByExample(OauthExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByExample(OauthExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insert(Oauth record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int insertSelective(Oauth record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Oauth> selectByExampleWithRowbounds(OauthExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
List<Oauth> selectByExample(OauthExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
Oauth selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExampleSelective(@Param("record") Oauth record, @Param("example") OauthExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByExample(@Param("record") Oauth record, @Param("example") OauthExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKeySelective(Oauth record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table oauth
*
* @mbg.generated Thu Oct 06 21:08:16 CST 2016
*/
int updateByPrimaryKey(Oauth record);
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
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