Commit be5c7c11 authored by 22管33's avatar 22管33

update READER

parent f3067646
此项目用于自动生成后端代码,生成包含实体类的两个文件,以及dao层接口以及xml文件。
1.进入项目后根据数据库是mysql,oracle或者postgresql选择相应的文件进行更改
①文件所在的位置:~/web/src/main/resources/mybatis/xxxxGeneratorConfig.xml
②根据使用的数据库更改相应的xxxxGeneratorConfig.xml文件。
③更改的第一点classPathEntry:localhost对应的jar包路径,更改为自己本地的路径。(建议使用的maven本地仓库中的jar包)
④更改第二点 jdbcConnection:
1.connectionURL 更改为需要连接的url
2.userId 数据库的用户名
3.password 数据库密码
⑤更改第三点 table(oracle)中schema更改为 "DataBase用户"
table (postgresql)中schema更改为 "DataBase用户" tableName中表名
domainObjectName生成的实体类的名字 enableCountByExample 默认true
2.修改pom.xml中的configuration标签下包含mysql,oracle,postgresql使用的配置路径 将不用的注释掉。
3.运行mybatis_generate.sh文件,就在项目根目录下面。
##SpringMVCProjectTemplate 自动生成代码文档说明
此项目用于自动生成后端代码,生成包含实体类的两个文件,以及dao层接口Mapper以及xml文件。
### 1.修改xxxxGeneratorConfig.XML文件
#### 进入项目后根据我们项目使用的数据库选择相应xml配置文件进行更改(mysql,oracle或者postgresql)
***(1)文件所在的位置*** ~/web/src/main/resources/mybatis/xxxxGeneratorConfig.xml
***(2)开始更改*** 根据使用的数据库更改相应的xxxxGeneratorConfig.xml文件(例如使用mysql会修改mysqlGeneratorConfig.xml)。
***(3)第一点更改***
xml文件中存在标签:
***classPathEntry location=""***
中location对应的jar包路径,更改为自己本地的路径。(建议使用的maven本地仓库中的jar包)
***(4)第二点更改***
***jdbcConnection:***
1.connectionURL 更改为需要连接的url
2.userId 数据库的用户名
3.password 数据库密码
***(5)第三点更改***
oracle数据库:<table>中schema更改为 "DataBase用户"
postgresql数据库:<table> 中schema更改为 "DataBase用户" tableName中表名,具体参考示例
omainObjectName生成的实体类的名字
enableCountByExample 默认true
### 2.修改pom.xml
修改pom.xml中***标签plugins***->***标签plugin***->***标签configuration***下包含
mysql,
oracle,
postgresql
使用的配置路径(例:使用的mysql就启用${basedir}/src/main/resources/mybatis/mysqlGeneratorConfig.xml配置文件) 将不用的注释掉。
### 3.运行生成过程
运行mybatis_generate.sh文件,就在项目根目录下面。
### 4.备注
PS:项目根目录下面的脚本作用clean_mybatis_generated.sh和clean_mybatis_generated_springmvc.sh 删除相应目录下所有的文件。
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActEvtLog;
import com.haomostudio.SeekTruthBackend.domain.public.ActEvtLogExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActEvtLogMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActEvtLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActEvtLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(Integer logNr);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActEvtLog record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActEvtLog record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActEvtLog> selectByExampleWithBLOBsWithRowbounds(ActEvtLogExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActEvtLog> selectByExampleWithBLOBs(ActEvtLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActEvtLog> selectByExampleWithRowbounds(ActEvtLogExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActEvtLog> selectByExample(ActEvtLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActEvtLog selectByPrimaryKey(Integer logNr);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActEvtLog record, @Param("example") ActEvtLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleWithBLOBs(@Param("record") ActEvtLog record, @Param("example") ActEvtLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActEvtLog record, @Param("example") ActEvtLogExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActEvtLog record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeyWithBLOBs(ActEvtLog record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_evt_log
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActEvtLog record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActGeBytearray;
import com.haomostudio.SeekTruthBackend.domain.public.ActGeBytearrayExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActGeBytearrayMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActGeBytearrayExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActGeBytearrayExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActGeBytearray record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActGeBytearray record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActGeBytearray> selectByExampleWithBLOBsWithRowbounds(ActGeBytearrayExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActGeBytearray> selectByExampleWithBLOBs(ActGeBytearrayExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActGeBytearray> selectByExampleWithRowbounds(ActGeBytearrayExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActGeBytearray> selectByExample(ActGeBytearrayExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActGeBytearray selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActGeBytearray record, @Param("example") ActGeBytearrayExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleWithBLOBs(@Param("record") ActGeBytearray record, @Param("example") ActGeBytearrayExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActGeBytearray record, @Param("example") ActGeBytearrayExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActGeBytearray record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeyWithBLOBs(ActGeBytearray record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActGeBytearray record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActGeProperty;
import com.haomostudio.SeekTruthBackend.domain.public.ActGePropertyExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActGePropertyMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActGePropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActGePropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String name);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActGeProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActGeProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActGeProperty> selectByExampleWithRowbounds(ActGePropertyExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActGeProperty> selectByExample(ActGePropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActGeProperty selectByPrimaryKey(String name);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActGeProperty record, @Param("example") ActGePropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActGeProperty record, @Param("example") ActGePropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActGeProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActGeProperty record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiActinst;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiActinstExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActHiActinstMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActHiActinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActHiActinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActHiActinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActHiActinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiActinst> selectByExampleWithRowbounds(ActHiActinstExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiActinst> selectByExample(ActHiActinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActHiActinst selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActHiActinst record, @Param("example") ActHiActinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActHiActinst record, @Param("example") ActHiActinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActHiActinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_actinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActHiActinst record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiAttachment;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiAttachmentExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActHiAttachmentMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActHiAttachmentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActHiAttachmentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActHiAttachment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActHiAttachment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiAttachment> selectByExampleWithRowbounds(ActHiAttachmentExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiAttachment> selectByExample(ActHiAttachmentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActHiAttachment selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActHiAttachment record, @Param("example") ActHiAttachmentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActHiAttachment record, @Param("example") ActHiAttachmentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActHiAttachment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_attachment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActHiAttachment record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiComment;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiCommentExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActHiCommentMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActHiCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActHiCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActHiComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActHiComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiComment> selectByExampleWithBLOBsWithRowbounds(ActHiCommentExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiComment> selectByExampleWithBLOBs(ActHiCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiComment> selectByExampleWithRowbounds(ActHiCommentExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiComment> selectByExample(ActHiCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActHiComment selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActHiComment record, @Param("example") ActHiCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleWithBLOBs(@Param("record") ActHiComment record, @Param("example") ActHiCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActHiComment record, @Param("example") ActHiCommentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActHiComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeyWithBLOBs(ActHiComment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_comment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActHiComment record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiDetail;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiDetailExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActHiDetailMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActHiDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActHiDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActHiDetail record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActHiDetail record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiDetail> selectByExampleWithRowbounds(ActHiDetailExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiDetail> selectByExample(ActHiDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActHiDetail selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActHiDetail record, @Param("example") ActHiDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActHiDetail record, @Param("example") ActHiDetailExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActHiDetail record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_detail
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActHiDetail record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiIdentitylink;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiIdentitylinkExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActHiIdentitylinkMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActHiIdentitylinkExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActHiIdentitylinkExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActHiIdentitylink record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActHiIdentitylink record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiIdentitylink> selectByExampleWithRowbounds(ActHiIdentitylinkExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiIdentitylink> selectByExample(ActHiIdentitylinkExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActHiIdentitylink selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActHiIdentitylink record, @Param("example") ActHiIdentitylinkExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActHiIdentitylink record, @Param("example") ActHiIdentitylinkExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActHiIdentitylink record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActHiIdentitylink record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiProcinst;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiProcinstExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActHiProcinstMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActHiProcinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActHiProcinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActHiProcinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActHiProcinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiProcinst> selectByExampleWithRowbounds(ActHiProcinstExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiProcinst> selectByExample(ActHiProcinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActHiProcinst selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActHiProcinst record, @Param("example") ActHiProcinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActHiProcinst record, @Param("example") ActHiProcinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActHiProcinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_procinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActHiProcinst record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiTaskinst;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiTaskinstExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActHiTaskinstMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActHiTaskinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActHiTaskinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActHiTaskinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActHiTaskinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiTaskinst> selectByExampleWithRowbounds(ActHiTaskinstExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiTaskinst> selectByExample(ActHiTaskinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActHiTaskinst selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActHiTaskinst record, @Param("example") ActHiTaskinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActHiTaskinst record, @Param("example") ActHiTaskinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActHiTaskinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_taskinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActHiTaskinst record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiVarinst;
import com.haomostudio.SeekTruthBackend.domain.public.ActHiVarinstExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActHiVarinstMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActHiVarinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActHiVarinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActHiVarinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActHiVarinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiVarinst> selectByExampleWithRowbounds(ActHiVarinstExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActHiVarinst> selectByExample(ActHiVarinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActHiVarinst selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActHiVarinst record, @Param("example") ActHiVarinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActHiVarinst record, @Param("example") ActHiVarinstExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActHiVarinst record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_hi_varinst
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActHiVarinst record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActIdGroup;
import com.haomostudio.SeekTruthBackend.domain.public.ActIdGroupExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActIdGroupMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActIdGroupExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActIdGroupExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActIdGroup record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActIdGroup record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActIdGroup> selectByExampleWithRowbounds(ActIdGroupExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActIdGroup> selectByExample(ActIdGroupExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActIdGroup selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActIdGroup record, @Param("example") ActIdGroupExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActIdGroup record, @Param("example") ActIdGroupExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActIdGroup record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_group
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActIdGroup record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActIdInfo;
import com.haomostudio.SeekTruthBackend.domain.public.ActIdInfoExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActIdInfoMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActIdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActIdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActIdInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActIdInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActIdInfo> selectByExampleWithBLOBsWithRowbounds(ActIdInfoExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActIdInfo> selectByExampleWithBLOBs(ActIdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActIdInfo> selectByExampleWithRowbounds(ActIdInfoExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActIdInfo> selectByExample(ActIdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActIdInfo selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActIdInfo record, @Param("example") ActIdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleWithBLOBs(@Param("record") ActIdInfo record, @Param("example") ActIdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActIdInfo record, @Param("example") ActIdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActIdInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeyWithBLOBs(ActIdInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActIdInfo record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActIdMembershipExample;
import com.haomostudio.SeekTruthBackend.domain.public.ActIdMembershipKey;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActIdMembershipMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_membership
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActIdMembershipExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_membership
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActIdMembershipExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_membership
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(ActIdMembershipKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_membership
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActIdMembershipKey record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_membership
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActIdMembershipKey record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_membership
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActIdMembershipKey> selectByExampleWithRowbounds(ActIdMembershipExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_membership
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActIdMembershipKey> selectByExample(ActIdMembershipExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_membership
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActIdMembershipKey record, @Param("example") ActIdMembershipExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_membership
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActIdMembershipKey record, @Param("example") ActIdMembershipExample example);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActIdUser;
import com.haomostudio.SeekTruthBackend.domain.public.ActIdUserExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActIdUserMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActIdUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActIdUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActIdUser record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActIdUser record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActIdUser> selectByExampleWithRowbounds(ActIdUserExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActIdUser> selectByExample(ActIdUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActIdUser selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActIdUser record, @Param("example") ActIdUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActIdUser record, @Param("example") ActIdUserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActIdUser record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_id_user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActIdUser record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActProcdefInfo;
import com.haomostudio.SeekTruthBackend.domain.public.ActProcdefInfoExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActProcdefInfoMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActProcdefInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActProcdefInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActProcdefInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActProcdefInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActProcdefInfo> selectByExampleWithRowbounds(ActProcdefInfoExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActProcdefInfo> selectByExample(ActProcdefInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActProcdefInfo selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActProcdefInfo record, @Param("example") ActProcdefInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActProcdefInfo record, @Param("example") ActProcdefInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActProcdefInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_procdef_info
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActProcdefInfo record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActReDeployment;
import com.haomostudio.SeekTruthBackend.domain.public.ActReDeploymentExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActReDeploymentMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActReDeploymentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActReDeploymentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActReDeployment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActReDeployment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActReDeployment> selectByExampleWithRowbounds(ActReDeploymentExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActReDeployment> selectByExample(ActReDeploymentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActReDeployment selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActReDeployment record, @Param("example") ActReDeploymentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActReDeployment record, @Param("example") ActReDeploymentExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActReDeployment record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_deployment
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActReDeployment record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActReModel;
import com.haomostudio.SeekTruthBackend.domain.public.ActReModelExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActReModelMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActReModelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActReModelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActReModel record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActReModel record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActReModel> selectByExampleWithRowbounds(ActReModelExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActReModel> selectByExample(ActReModelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActReModel selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActReModel record, @Param("example") ActReModelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActReModel record, @Param("example") ActReModelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActReModel record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_model
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActReModel record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActReProcdef;
import com.haomostudio.SeekTruthBackend.domain.public.ActReProcdefExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActReProcdefMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActReProcdefExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActReProcdefExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActReProcdef record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActReProcdef record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActReProcdef> selectByExampleWithRowbounds(ActReProcdefExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActReProcdef> selectByExample(ActReProcdefExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActReProcdef selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActReProcdef record, @Param("example") ActReProcdefExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActReProcdef record, @Param("example") ActReProcdefExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActReProcdef record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_re_procdef
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActReProcdef record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuEventSubscr;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuEventSubscrExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActRuEventSubscrMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActRuEventSubscrExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActRuEventSubscrExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActRuEventSubscr record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActRuEventSubscr record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuEventSubscr> selectByExampleWithRowbounds(ActRuEventSubscrExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuEventSubscr> selectByExample(ActRuEventSubscrExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActRuEventSubscr selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActRuEventSubscr record, @Param("example") ActRuEventSubscrExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActRuEventSubscr record, @Param("example") ActRuEventSubscrExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActRuEventSubscr record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_event_subscr
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActRuEventSubscr record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuExecution;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuExecutionExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActRuExecutionMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActRuExecutionExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActRuExecutionExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActRuExecution record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActRuExecution record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuExecution> selectByExampleWithRowbounds(ActRuExecutionExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuExecution> selectByExample(ActRuExecutionExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActRuExecution selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActRuExecution record, @Param("example") ActRuExecutionExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActRuExecution record, @Param("example") ActRuExecutionExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActRuExecution record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_execution
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActRuExecution record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuIdentitylink;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuIdentitylinkExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActRuIdentitylinkMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActRuIdentitylinkExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActRuIdentitylinkExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActRuIdentitylink record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActRuIdentitylink record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuIdentitylink> selectByExampleWithRowbounds(ActRuIdentitylinkExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuIdentitylink> selectByExample(ActRuIdentitylinkExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActRuIdentitylink selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActRuIdentitylink record, @Param("example") ActRuIdentitylinkExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActRuIdentitylink record, @Param("example") ActRuIdentitylinkExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActRuIdentitylink record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_identitylink
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActRuIdentitylink record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuJob;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuJobExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActRuJobMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActRuJobExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActRuJobExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActRuJob record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActRuJob record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuJob> selectByExampleWithRowbounds(ActRuJobExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuJob> selectByExample(ActRuJobExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActRuJob selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActRuJob record, @Param("example") ActRuJobExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActRuJob record, @Param("example") ActRuJobExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActRuJob record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_job
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActRuJob record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuTask;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuTaskExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActRuTaskMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActRuTaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActRuTaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActRuTask record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActRuTask record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuTask> selectByExampleWithRowbounds(ActRuTaskExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuTask> selectByExample(ActRuTaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActRuTask selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActRuTask record, @Param("example") ActRuTaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActRuTask record, @Param("example") ActRuTaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActRuTask record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActRuTask record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuVariable;
import com.haomostudio.SeekTruthBackend.domain.public.ActRuVariableExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ActRuVariableMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ActRuVariableExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ActRuVariableExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ActRuVariable record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ActRuVariable record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuVariable> selectByExampleWithRowbounds(ActRuVariableExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ActRuVariable> selectByExample(ActRuVariableExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ActRuVariable selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ActRuVariable record, @Param("example") ActRuVariableExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ActRuVariable record, @Param("example") ActRuVariableExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ActRuVariable record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ru_variable
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ActRuVariable record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.ProcessProperty;
import com.haomostudio.SeekTruthBackend.domain.public.ProcessPropertyExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface ProcessPropertyMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(ProcessPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(ProcessPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(ProcessProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(ProcessProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ProcessProperty> selectByExampleWithRowbounds(ProcessPropertyExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<ProcessProperty> selectByExample(ProcessPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
ProcessProperty selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") ProcessProperty record, @Param("example") ProcessPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") ProcessProperty record, @Param("example") ProcessPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(ProcessProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.process_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(ProcessProperty record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.Role;
import com.haomostudio.SeekTruthBackend.domain.public.RoleExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface RoleMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(RoleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(RoleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(Role record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(Role record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<Role> selectByExampleWithRowbounds(RoleExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<Role> selectByExample(RoleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
Role selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") Role record, @Param("example") RoleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") Role record, @Param("example") RoleExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(Role record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.role
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(Role record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.SectionProperty;
import com.haomostudio.SeekTruthBackend.domain.public.SectionPropertyExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface SectionPropertyMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(SectionPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(SectionPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(SectionProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(SectionProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<SectionProperty> selectByExampleWithRowbounds(SectionPropertyExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<SectionProperty> selectByExample(SectionPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
SectionProperty selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") SectionProperty record, @Param("example") SectionPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") SectionProperty record, @Param("example") SectionPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(SectionProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(SectionProperty record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.SectionTaskM2m;
import com.haomostudio.SeekTruthBackend.domain.public.SectionTaskM2mExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface SectionTaskM2mMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(SectionTaskM2mExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(SectionTaskM2mExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(SectionTaskM2m record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(SectionTaskM2m record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<SectionTaskM2m> selectByExampleWithRowbounds(SectionTaskM2mExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<SectionTaskM2m> selectByExample(SectionTaskM2mExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
SectionTaskM2m selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") SectionTaskM2m record, @Param("example") SectionTaskM2mExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") SectionTaskM2m record, @Param("example") SectionTaskM2mExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(SectionTaskM2m record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.section_task_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(SectionTaskM2m record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.Task;
import com.haomostudio.SeekTruthBackend.domain.public.TaskExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface TaskMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(TaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(TaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(Task record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(Task record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<Task> selectByExampleWithRowbounds(TaskExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<Task> selectByExample(TaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
Task selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") Task record, @Param("example") TaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") Task record, @Param("example") TaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(Task record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.task
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(Task record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.TemplateSectionM2m;
import com.haomostudio.SeekTruthBackend.domain.public.TemplateSectionM2mExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface TemplateSectionM2mMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(TemplateSectionM2mExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(TemplateSectionM2mExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(TemplateSectionM2m record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(TemplateSectionM2m record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<TemplateSectionM2m> selectByExampleWithRowbounds(TemplateSectionM2mExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<TemplateSectionM2m> selectByExample(TemplateSectionM2mExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
TemplateSectionM2m selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") TemplateSectionM2m record, @Param("example") TemplateSectionM2mExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") TemplateSectionM2m record, @Param("example") TemplateSectionM2mExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(TemplateSectionM2m record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.template_section_m2m
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(TemplateSectionM2m record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.User;
import com.haomostudio.SeekTruthBackend.domain.public.UserExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface UserMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(UserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(UserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(User record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(User record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<User> selectByExampleWithRowbounds(UserExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<User> selectByExample(UserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
User selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") User record, @Param("example") UserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") User record, @Param("example") UserExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(User record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.user
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(User record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.dao.public;
import com.haomostudio.SeekTruthBackend.domain.public.VariantProperty;
import com.haomostudio.SeekTruthBackend.domain.public.VariantPropertyExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface VariantPropertyMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
long countByExample(VariantPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByExample(VariantPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int deleteByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insert(VariantProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int insertSelective(VariantProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<VariantProperty> selectByExampleWithRowbounds(VariantPropertyExample example, RowBounds rowBounds);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
List<VariantProperty> selectByExample(VariantPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
VariantProperty selectByPrimaryKey(String id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExampleSelective(@Param("record") VariantProperty record, @Param("example") VariantPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByExample(@Param("record") VariantProperty record, @Param("example") VariantPropertyExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKeySelective(VariantProperty record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.variant_property
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
int updateByPrimaryKey(VariantProperty record);
}
\ No newline at end of file
package com.haomostudio.SeekTruthBackend.domain.public;
public class ActGeBytearray {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column public.act_ge_bytearray.id_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
private String id;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column public.act_ge_bytearray.rev_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
private Integer rev;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column public.act_ge_bytearray.name_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
private String name;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column public.act_ge_bytearray.deployment_id_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
private String deploymentId;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column public.act_ge_bytearray.generated_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
private Boolean generated;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column public.act_ge_bytearray.bytes_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
private byte[] bytes;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column public.act_ge_bytearray.id_
*
* @return the value of public.act_ge_bytearray.id_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public String getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column public.act_ge_bytearray.id_
*
* @param id the value for public.act_ge_bytearray.id_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public void setId(String id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column public.act_ge_bytearray.rev_
*
* @return the value of public.act_ge_bytearray.rev_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public Integer getRev() {
return rev;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column public.act_ge_bytearray.rev_
*
* @param rev the value for public.act_ge_bytearray.rev_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public void setRev(Integer rev) {
this.rev = rev;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column public.act_ge_bytearray.name_
*
* @return the value of public.act_ge_bytearray.name_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public String getName() {
return name;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column public.act_ge_bytearray.name_
*
* @param name the value for public.act_ge_bytearray.name_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public void setName(String name) {
this.name = name;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column public.act_ge_bytearray.deployment_id_
*
* @return the value of public.act_ge_bytearray.deployment_id_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public String getDeploymentId() {
return deploymentId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column public.act_ge_bytearray.deployment_id_
*
* @param deploymentId the value for public.act_ge_bytearray.deployment_id_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public void setDeploymentId(String deploymentId) {
this.deploymentId = deploymentId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column public.act_ge_bytearray.generated_
*
* @return the value of public.act_ge_bytearray.generated_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public Boolean getGenerated() {
return generated;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column public.act_ge_bytearray.generated_
*
* @param generated the value for public.act_ge_bytearray.generated_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public void setGenerated(Boolean generated) {
this.generated = generated;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column public.act_ge_bytearray.bytes_
*
* @return the value of public.act_ge_bytearray.bytes_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public byte[] getBytes() {
return bytes;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column public.act_ge_bytearray.bytes_
*
* @param bytes the value for public.act_ge_bytearray.bytes_
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
public void setBytes(byte[] bytes) {
this.bytes = bytes;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table public.act_ge_bytearray
*
* @mbg.generated Sat May 06 18:22:14 CST 2017
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
sb.append(", rev=").append(rev);
sb.append(", name=").append(name);
sb.append(", deploymentId=").append(deploymentId);
sb.append(", generated=").append(generated);
sb.append(", bytes=").append(bytes);
sb.append("]");
return sb.toString();
}
}
\ No newline at end of file
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