后端代码迁移

This commit is contained in:
zkr_liushenlu 2021-03-25 18:00:05 +08:00
parent c304091ecd
commit 9f63dd92cc
220 changed files with 73415 additions and 58 deletions

View File

@ -23,6 +23,38 @@
<artifactId>ruoyi-common</artifactId>
</dependency>
<!-- 爬虫 -->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.13.1</version>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.30</version>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>2.40.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,220 @@
package com.ruoyi.content.controller;
import com.ruoyi.content.domain.ArticleLabel;
import com.ruoyi.content.message.Message;
import com.ruoyi.content.service.ArticleLabelService;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
@Controller
@RequestMapping("/label")
public class ArticleLabelController {
private final static Logger logger = LoggerFactory.getLogger(ArticleManageController.class);
@Autowired
private ArticleLabelService articleLabelService;
/**
* 查询所有标签信息(本程序调用)
*
* @param request
* @param response
* @return
* @throws Exception
*/
@RequestMapping("/queryLabel")
@ResponseBody
public Message queryLabel(HttpServletRequest request, HttpServletResponse response) throws Exception {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
logger.info("查询所有标签信息控制层方法开始");
Message msg = new Message();
Map<String, Object> labelMap = new HashMap<String, Object>();
// 查询标签表
List<ArticleLabel> labelList = articleLabelService.queryLabel();
if (null != labelList && labelList.size() > 0) {
labelMap.put("labelList", labelList);
msg.setInfo("查询标签成功");
msg.setObject(labelMap);
msg.setResult(true);
} else {
labelMap.put("labelList", labelList);
msg.setInfo("查询标签失败");
msg.setObject(labelMap);
msg.setResult(false);
}
logger.info("查询所有标签信息控制层方法结束");
return msg;
}
// /**
// * 根据公司id查询查询标签信息(远端OSS调用)
// * @param request
// * @param response
// * @param companyId
// * @return
// */
// @RequestMapping("/queryLabelOss")
// @ResponseBody
// public Message queryLabelOss(HttpServletRequest request,HttpServletResponse response,String companyId) {
// response.setHeader("Access-Control-Allow-Origin", "*");
// Thread.currentThread().setName(UUID.randomUUID().toString());
// logger.info("查询所有标签信息控制层方法开始,公司companyId【{}】",companyId);
// Message msg = new Message();
// Map<String, Object> labelMap = new HashMap<String, Object>();
// // 标签列表信息
// List<ArticleLabel> labelList = new ArrayList<ArticleLabel>();
// labelList = articleLabelService.queryLabelOss(companyId);
// if(null != labelList && labelList.size() > 0 ) {
// labelMap.put("labelList", labelList);
// msg.setInfo("查询标签成功");
// msg.setObject(labelMap);
// msg.setResult(true);
// } else {
// labelMap.put("labelList", labelList);
// msg.setInfo("查询标签失败");
// msg.setObject(labelMap);
// msg.setResult(false);
// }
// logger.info("查询标签信息控制层方法结束");
// return msg;
//
// }
/**
* 保存文章的标签信息
*
* @param request
* @param response
* @return
* @throws Exception
*/
@RequestMapping("/addlabel")
@ResponseBody
public Message saveLabel(HttpServletRequest request, HttpServletResponse response) throws Exception {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("保存文章标签信息控制层方法开始");
String articleId = request.getParameter("articleId"); // 文章id
String labelIds = request.getParameter("labelIds"); // 标签id
logger.info("要添加标签的文章articleId【{}】,标签labelId【{}】", articleId, labelIds);
// 文章ID和标签ID
if (StringUtils.isBlank(articleId) || StringUtils.isBlank(labelIds)) {
logger.info("给文章添加标签缺少参数,articleId【{}】,labelIds【{}】", articleId, labelIds);
}
msg = articleLabelService.addlabel(articleId, labelIds);
logger.info("保存文章标签信息控制层方法结束");
return msg;
}
/**
* 新增标签信息
*
* @param request
* @param response
* @return
* @throws Exception
*/
@RequestMapping(method = RequestMethod.GET)
@ResponseBody
public Message addLabel(HttpServletRequest request, HttpServletResponse response) throws Exception {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("新增标签信息控制层方法开始");
String labelName = request.getParameter("name"); // 标签名称
logger.info("标签labelName【{}】", labelName);
// 文章ID和标签ID
if (StringUtils.isBlank(labelName)) {
logger.info("新增标签缺少参数,labelName【{}】", labelName);
msg.setResult(false);
msg.setInfo("labelName不能为空");
return msg;
}
msg = articleLabelService.saveLabel(labelName);
logger.info("新增标签信息控制层方法结束");
return msg;
}
/**
* 修改标签信息
*
* @param request
* @param response
* @return
* @throws Exception
*/
@RequestMapping(method = RequestMethod.PUT)
@ResponseBody
public Message updateLabel(HttpServletRequest request, HttpServletResponse response) throws Exception {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("修改标签信息控制层方法开始");
String labelId = request.getParameter("id"); // 标签id
String labelName = request.getParameter("name"); // 标签名称
logger.info("标签labelName【{}】", labelName);
// 文章ID和标签ID
if (StringUtils.isBlank(labelId)) {
logger.info("修改标签缺少参数,labelId【{}】", labelId);
msg.setResult(false);
msg.setInfo("labelId不能为空");
return msg;
}
if (StringUtils.isBlank(labelName)) {
logger.info("修改标签缺少参数,labelName【{}】", labelName);
msg.setResult(false);
msg.setInfo("labelName不能为空");
return msg;
}
msg = articleLabelService.updateLabel(Integer.valueOf(labelId), labelName);
logger.info("修改标签信息控制层方法结束");
return msg;
}
/**
* 删除标签信息
*
* @param request
* @param response
* @return
* @throws Exception
*/
@RequestMapping(method = RequestMethod.DELETE)
@ResponseBody
public Message deleteLabel(HttpServletRequest request, HttpServletResponse response) throws Exception {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("删除标签信息控制层方法开始");
String labelId = request.getParameter("id"); // 标签名称
logger.info("标签labelId【{}】", labelId);
// 文章ID和标签ID
if (StringUtils.isBlank(labelId)) {
logger.info("删除标签缺少参数,labelId【{}】", labelId);
msg.setResult(false);
msg.setInfo("labelId不能为空");
return msg;
}
msg = articleLabelService.deleteLabel(Integer.valueOf(labelId));
logger.info("删除标签信息控制层方法结束");
return msg;
}
}

View File

@ -0,0 +1,537 @@
package com.ruoyi.content.controller;
import com.ruoyi.common.utils.DateUtils;
import com.ruoyi.content.domain.ArticleInfo;
import com.ruoyi.content.domain.PageDTO;
import com.ruoyi.content.domain.PublishedArticleInfo;
import com.ruoyi.content.exception.BusinessException;
import com.ruoyi.content.message.Message;
import com.ruoyi.content.service.ArticleService;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
/**
* 说明文章管理
*
* @author Ma.C
* @date 2018年5月2日
*/
@Controller
@RequestMapping("/article")
public class ArticleManageController {
private final static Logger logger = LoggerFactory.getLogger(ArticleManageController.class);
@Autowired
private ArticleService articleService;
/**
* 查询所有公司发布的文章信息
*
* @param request
* @param response
* @return
*/
@RequestMapping("/articleArry")
@ResponseBody
public PageDTO articleArry(HttpServletRequest request, HttpServletResponse response) {
logger.info("查询文章列表的控制层方法开始!");
Thread.currentThread().setName(UUID.randomUUID().toString());
PageDTO pageDTO = new PageDTO();
try {
String rowsVal = request.getParameter("rows");
String page = request.getParameter("page");
String articelName = request.getParameter("articelName");
String articelAuthor = request.getParameter("articelAuthor");
String channelId = request.getParameter("channelId");
String special = request.getParameter("special");
String articleState = request.getParameter("articleState");
int rows = Integer.parseInt(rowsVal);
int startRow = rows * (Integer.parseInt(page) - 1);
List<PublishedArticleInfo> list = articleService.queryArticle(startRow, rows, articelName, articelAuthor,
special, channelId, articleState);
pageDTO.setPage(Integer.parseInt(page));
pageDTO.setStartRow(startRow);
pageDTO.setDataRows(list);
int count = articleService.countArticleInfoByState(articelName, articelAuthor, special, channelId,
articleState);
pageDTO.setTotal(count % rows == 0 ? count / rows : (count / rows + 1));
pageDTO.setRecords(count);
pageDTO.setPage(Integer.parseInt(page));
} catch (Exception e) {
logger.info("查询当前用户发布的文章失败【{}】", e.getMessage());
e.printStackTrace();
}
logger.info("查询文章列表的控制层方法结束!");
return pageDTO;
}
/**
* 更新文章基本信息
*
* @param request
* @param response
* @return
*/
@RequestMapping("/articleUp")
@ResponseBody
public Message articleUp(HttpServletRequest request, HttpServletResponse response) {
logger.info("修改文章信息的控制层方法开始!");
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("获取修改文章信息页面参数!");
String articleId = request.getParameter("articleId");
String articleName = request.getParameter("articleName");
String articleAuthor = request.getParameter("articleAuthor");
String special = request.getParameter("special");
String channelId = request.getParameter("channelId");
/* String articleState = request.getParameter("articleState"); */
String shareTitle = request.getParameter("shareTitle");
String shareDes = request.getParameter("shareDes");
String originalUrl = request.getParameter("originalUrl");
ArticleInfo articleInfo = new ArticleInfo();
articleInfo = articleService.queryArticleByArticleId(articleId);
articleInfo.setArticleAuthor(articleAuthor);
articleInfo.setArticleName(articleName);
articleInfo.setSpecial(special);
articleInfo.setChannelId(channelId);
/* articleInfo.setArticleState(articleState); */
articleInfo.setShareTitle(shareTitle);
articleInfo.setShareDes(shareDes);
articleInfo.setOriginalUrl(originalUrl);
articleInfo.setUpdateDate(DateUtils.getDate());
articleInfo.setUpdateTime(DateUtils.getTimeNow());
try {
msg = articleService.articleUpByArticleId(articleInfo);
} catch (Exception e) {
e.printStackTrace();
logger.info("修改文章信息失败【{}】", e.getMessage());
}
logger.info("修改文章信息的控制层方法结束!");
return msg;
}
/**
* 文章列表的删除功能
*
* @param request
* @param response
* @return
*/
@RequestMapping("/delArticleInfo")
@ResponseBody
public Message delArticleInfo(HttpServletRequest request, HttpServletResponse response) {
logger.info("删除文章信息的控制层方法开始!");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
String id = request.getParameter("ids");
try {
msg = articleService.delArticleInfo(id);
} catch (Exception e) {
e.printStackTrace();
logger.info("删除文章信息失败【{}】", e.getMessage());
}
logger.info("删除文章信息的控制层方法结束!");
return msg;
}
/**
* 通过文章链接获取文章内容
*
* @return
*/
@RequestMapping("/getArticleContentByUrl")
@ResponseBody
public Message getArticleContentByUrl(HttpServletRequest request, HttpServletResponse response) {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("通过文章链接获取文章内容控制层方法开始");
String createUser = request.getParameter("createUser");
if (StringUtils.isBlank(createUser)) {
logger.info("用户已离线");
throw new BusinessException("通过文章链接获取文章内容,用户已离线");
}
String originalUrl = request.getParameter("originalUrl"); // 文章连接,如果是通过连接导入文章,则必传
String author = request.getParameter("author"); // 作者
String ids = request.getParameter("ids"); // 广告ids
String isAuthorization = request.getParameter("isAuthorization"); // 是否授权
String isReserve = request.getParameter("isReserve"); // 是否预约
String automaticName = request.getParameter("automaticName");// 自定义名
String introduction = request.getParameter("introduction"); // 介绍
String isJoinActive = request.getParameter("isJoinActive");// 是否添加活动
String labelIds = request.getParameter("labelIds");
logger.info(
"创建文章的控制层方法开始!传入参数originalUrl[{}], author[{}], createUser[{}],ids[{}],isAuthorization[{}],isReserve[{}],automaticName[{}],introduction[{}],labelIds[{}],isJoinActive[{}]",
new Object[]{originalUrl, author, createUser, ids, isAuthorization, isReserve, automaticName,
introduction, labelIds, isJoinActive});
if (StringUtils.isBlank(originalUrl)) {
logger.info("创建文章内容参数为空!");
msg.setInfo("请粘微信文章地址");
msg.setResult(false);
logger.info("通过文章链接获取文章内容控制层方法结束");
return msg;
}
try {
msg = this.articleService.getArticleContentByUrl(originalUrl, createUser, author, ids, isAuthorization,
isReserve, automaticName, introduction, labelIds, isJoinActive);
} catch (Exception e) {
logger.info("创建文章失败【{}】", e.getMessage());
msg.setInfo("创建文章异常");
msg.setResult(false);
e.printStackTrace();
}
logger.info("通过文章链接获取文章内容控制层方法结束");
return msg;
}
/**
* 通过文章链接获取文章内容
*
* @return
*/
@RequestMapping("/create")
@ResponseBody
public Message getArticleContent(HttpServletRequest request, HttpServletResponse response) {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("通过文章链接获取文章内容控制层方法开始");
String createUser = request.getParameter("createUser");
if (StringUtils.isBlank(createUser)) {
logger.info("用户已离线");
throw new BusinessException("通过文章链接获取文章内容,用户已离线");
}
String author = request.getParameter("author"); // 作者
String ids = request.getParameter("ids"); // 广告ids
String isAuthorization = request.getParameter("isAuthorization"); // 是否授权
String isReserve = request.getParameter("isReserve"); // 是否预约
String automaticName = request.getParameter("automaticName");// 自定义名
String introduction = request.getParameter("introduction"); // 介绍
String isJoinActive = request.getParameter("isJoinActive");// 是否添加活动
String labelIds = request.getParameter("labelIds");
String articleName = request.getParameter("articleName");
String shareImgUrl = request.getParameter("shareImgUrl");
String shareDes = request.getParameter("shareDes");
String articleContent = request.getParameter("articleContent");
logger.info(
"创建文章的控制层方法开始!传入参数author[{}], createUser[{}],ids[{}],isAuthorization[{}],isReserve[{}],automaticName[{}],introduction[{}],labelIds[{}],isJoinActive[{}]",
new Object[]{author, createUser, ids, isAuthorization, isReserve, automaticName, introduction,
labelIds, isJoinActive});
try {
msg = this.articleService.getArticleContent(createUser, author, ids, isAuthorization, isReserve,
automaticName, introduction, labelIds, isJoinActive, articleName, shareImgUrl, shareDes,
articleContent);
} catch (Exception e) {
logger.info("创建文章失败【{}】", e.getMessage());
msg.setInfo("创建文章异常");
msg.setResult(false);
e.printStackTrace();
}
logger.info("通过文章链接获取文章内容控制层方法结束");
return msg;
}
// /**
// * 发布文章(第一次发布)
// * @return
// */
// @RequestMapping("/publishArticle")
// @ResponseBody
// public Message publishArticle(HttpServletRequest request,HttpServletResponse response){
// response.setHeader("Access-Control-Allow-Origin", "*");
// Thread.currentThread().setName(UUID.randomUUID().toString());
// logger.info("第一次发布文章的控制层方法开始");
// CmsSysUser userInfoDTO = (CmsSysUser) SecurityUtils.getSubject().getPrincipal();
// String author = userInfoDTO.getName();
// String createUser = userInfoDTO.getEmail(); //文章创建者后台管理员
// String companyId = userInfoDTO.getDepartmentId();//管理员公司id
//
// if (StringUtils.isBlank(createUser)) {
// throw new BusinessException("您已离线,请重新登陆");
// }
// Message msg = new Message();
// String articleContent = request.getParameter("articleContent"); //文章内容
// String articleName = request.getParameter("articleName"); //文章标题
// String originalUrl = request.getParameter("originalUrl"); //文章链接
// String shareImgUrl = request.getParameter("shareImgUrl"); //分享展示图片
// String shareTitle = request.getParameter("shareTitle"); //分享标题
// String shareDes = request.getParameter("shareDes"); //分享描述
// String listPicUrl = request.getParameter("listPicUrl"); //文章列表显示图片url
//// String cardId = request.getParameter("cardId"); //名片id
// String adId = request.getParameter("adId"); //广告id
//
// //广告id集合
// ArticleInfo article = new ArticleInfo();
// article.setArticleAuthor(author);
// article.setArticleName(articleName);
// article.setOriginalUrl(originalUrl);
// article.setShareImgUrl(shareImgUrl);
// article.setShareTitle(shareTitle);
// article.setShareDes(shareDes);
// article.setListPicUrl(listPicUrl);
// article.setCreateUser(createUser);
// article.setCompanyId(companyId);
//
// logger.info("第一次发布文章请求参数,articleName[{}],originalUrl[{}],shareImgUrl[{}],shareTitle[{}],shareDes[{}],listPicUrl[{}],createUser[{}],companyId[{}]",
// articleName,originalUrl,shareImgUrl,shareTitle,shareDes,listPicUrl,createUser,companyId);
// Map<String, Object> requestMap = new HashMap<String ,Object>();
// requestMap.put("article", article);
// requestMap.put("articleContent", articleContent);
// requestMap.put("adId", adId);
// if (StringUtils.isBlank(articleContent) || StringUtils.isBlank(articleName) || StringUtils.isBlank(originalUrl) ||
// StringUtils.isBlank(shareImgUrl) || StringUtils.isBlank(shareTitle) || StringUtils.isBlank(listPicUrl)|| StringUtils.isBlank(companyId)|| StringUtils.isBlank(createUser)) {
// logger.info("保存文章失败,缺少参数");
// msg.setInfo("第一次发布文章,缺少请求参数");
// msg.setResult(false);
// return msg;
// }
// //根据链接获取的文章
//
// msg = articleService.publishArticle(requestMap);
// logger.info("发布文章的控制层方法结束");
// return msg;
// }
/**
* 保存(更新)文章静态页面 @Title: updateArticle @Description: TODO() @param @return
* 参数 @return Message 返回类型 @throws
*/
@RequestMapping("/updateArticle")
@ResponseBody
public Message updateArticle(HttpServletRequest request, HttpServletResponse response) {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
logger.info("更新已发布文章的控制层方法开始");
Message msg = new Message();
String articleId = request.getParameter("articleId"); // 文章id
String articleContent = request.getParameter("articleContent"); // 文章内容
String shareTitle = request.getParameter("shareTitle"); // 分享标题
String shareImgUrl = request.getParameter("shareImgUrl");
String shareDes = request.getParameter("shareDes");
String adId = request.getParameter("adId"); // 广告id
String companyId = request.getParameter("companyId"); // 公司id
String publishId = request.getParameter("publishId"); // 发布id
String isAuthorization = request.getParameter("isAuthorization");
String isReserve = request.getParameter("isReserve");
String isJoinActive = request.getParameter("isJoinActive");
String automaticName = request.getParameter("automaticName");// 自定义名
String introduction = request.getParameter("introduction"); // 介绍
logger.info(
"调用生成静态页面参数articleId[{}],shareTitle[{}],shareImgUrl[{}],shareDes[{}],publishId[{}],companyId[{}],isAuthorization[{}],isReserve[{}],automaticName[{}],introduction[{}],isJoinActive[{}]",
articleId, shareTitle, shareImgUrl, shareDes, publishId, companyId, isAuthorization, isReserve,
automaticName, introduction, isJoinActive);
// 文章名称
if (StringUtils.isBlank(articleId) && articleId == null) {
logger.info("更新已发布的文章缺少参数,articleId[{}]", articleId);
msg.setInfo("跟新已发布的文章缺少参数");
msg.setResult(false);
return msg;
}
logger.info("要更新的文章aritcleId[{}]", Integer.valueOf(articleId));
ArticleInfo article = new ArticleInfo();
article.setArticleId(Integer.valueOf(articleId));
article.setShareImgUrl(shareImgUrl);
article.setShareDes(shareDes);
article.setShareTitle(shareTitle);
Map<String, Object> requestMap = new HashMap<String, Object>();
requestMap.put("article", article);
requestMap.put("articleContent", articleContent);
requestMap.put("adId", adId);
requestMap.put("companyId", companyId);
requestMap.put("publishId", publishId);
requestMap.put("isAuthorization", isAuthorization);
requestMap.put("isReserve", isReserve);
requestMap.put("isJoinActive", isJoinActive);
requestMap.put("automaticName", automaticName);
requestMap.put("introduction", introduction);
msg = articleService.savePulishedArticle(requestMap);
logger.info("更新已发布文章的控制层方法结束");
return msg;
}
// /**
// * 1.2 获取个人已经发布过的文章内容
// * @Title: getArticleContentByPublish
// * @Description: TODO()
// * @param @return 参数
// * @return Message 返回类型
// * @throws
// */
// @RequestMapping("/getArticleContentByPublish")
// @ResponseBody
// public Message getArticleContentByPublish(HttpServletRequest request,HttpServletResponse response) {
// response.setHeader("Access-Control-Allow-Origin", "*");
// Thread.currentThread().setName(UUID.randomUUID().toString());
// logger.info("获取个人已经发布过的文章内容控制层方法开始");
// Message msg = new Message();
// String userId = request.getParameter("userId");
// if (StringUtils.isBlank(userId)) {
// logger.info("用户已离线");
// throw new BusinessException("通过文章链接获取文章内容,用户已离线");
// }
//// String articleId = request.getParameter("articleId"); //文章id
// String publishId = request.getParameter("publishId"); //发布id
// msg = articleService.getArticleContentByPublish(publishId, userId);
// logger.info("获取个人已经发布过的文章内容控制层方法结束");
// return msg;
// }
/**
* @Title: queryPublishedDetails
* @Description: TODO(获取文章浏览详情)
*/
@RequestMapping("/queryPublishedDetails")
@ResponseBody
public Message queryPublishedDetails(HttpServletRequest request, HttpServletResponse response) {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("文章浏览详情控制层开始!");
// 获取文章浏览详情
String userId = request.getParameter("userId");
String articleId = request.getParameter("articleId");// 文章Id
msg = articleService.queryPublishedDetails(userId, articleId);
logger.info("文章浏览详情控制层结束!");
return msg;
}
// /**
// * @Title: changeSate
// * @Description: TODO(文章发布)
// */
// @RequestMapping("/changeSate")
// @ResponseBody
// public Message changeSate(HttpServletRequest request,HttpServletResponse response){
// response.setHeader("Access-Control-Allow-Origin", "*");
// Thread.currentThread().setName(UUID.randomUUID().toString());
// Message msg = new Message();
// logger.info("文章发布控制层开始!");
// //修改文章状态
// String articleId = request.getParameter("ids");//文章Id
// try {
// msg = articleService.changeSate(articleId);
// } catch (Exception e) {
// logger.info("发布文章失败【{}】",e.getMessage());
// e.printStackTrace();
// }
// logger.info("文章发布控制层结束!");
// return msg;
// }
/**
* 查询当前公司发布的文章信息
*
* @param request
* @param response
* @return
*/
@RequestMapping("/articleBranchIdArry")
@ResponseBody
public PageDTO articleBranchIdArry(HttpServletRequest request, HttpServletResponse response) {
logger.info("查询文章列表的控制层方法开始!");
Thread.currentThread().setName(UUID.randomUUID().toString());
PageDTO pageDTO = new PageDTO();
try {
String rowsVal = request.getParameter("rows");
String page = request.getParameter("page");
int rows = Integer.parseInt(rowsVal);
int startRow = rows * (Integer.parseInt(page) - 1);
// 1.根据登录信息查哪个公司登录
String companyId = "1";
String branchId = "86";
pageDTO = articleService.queryBranchIdArticle(companyId, branchId, startRow, rows);
pageDTO.setPage(Integer.parseInt(page));
pageDTO.setPage(Integer.parseInt(page));
} catch (Exception e) {
logger.info("查询当前用户发布的文章失败【{}】", e.getMessage());
e.printStackTrace();
}
logger.info("查询文章列表的控制层方法结束!");
return pageDTO;
}
/**
* 创建文章的删除功能
*
* @param request
* @param response
* @return
*/
@RequestMapping("/delArticle")
@ResponseBody
public Message delArticle(HttpServletRequest request, HttpServletResponse response) {
logger.info("创建文章的删除功能的控制层方法开始!");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
String id = request.getParameter("ids");
try {
msg = articleService.delArticle(id);
} catch (Exception e) {
e.printStackTrace();
logger.info("创建文章的删除功能失败【{}】", e.getMessage());
}
logger.info("创建文章的删除功能的控制层方法结束!");
return msg;
}
/**
* @Title: articleUrlCopy
* @Description: TODO(生成文章链接)
*/
@RequestMapping("/articleUrlCopy")
@ResponseBody
public Message articleUrlCopy(HttpServletRequest request, HttpServletResponse response) {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("生成文章链接控制层开始!");
try {
String articleId = request.getParameter("articleId");// 文章Id
String publishId = request.getParameter("publishId");
String userId = "24";
msg = this.articleService.articleUrlCopy(articleId, userId, publishId);
} catch (Exception e) {
logger.info("生成文章链接失败【{}】", e.getMessage());
}
logger.info("生成文章链接控制层结束!");
return msg;
}
/**
* @param request
* @param response
* @return
*/
@RequestMapping("/delHTML")
@ResponseBody
public Message delHTML(HttpServletRequest request, HttpServletResponse response) {
logger.info("创建文章的删除HTML的控制层方法开始");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
String id = request.getParameter("ids");
try {
msg = this.articleService.delHTML(id);
} catch (Exception e) {
e.printStackTrace();
logger.info("创建文章的删除HTML功能失败【{}】", e.getMessage());
}
logger.info("创建文章的删除HTML功能的控制层方法结束");
return msg;
}
}

View File

@ -0,0 +1,312 @@
package com.ruoyi.content.controller;
import com.ruoyi.content.domain.BaseCode;
import com.ruoyi.content.domain.BaseCodeTree;
import com.ruoyi.content.domain.PageDTO;
import com.ruoyi.content.message.Message;
import com.ruoyi.content.service.BaseCodeService;
import com.ruoyi.content.utils.DateUtil;
import com.ruoyi.content.utils.JsonUtil;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.*;
/**
* 说明栏目管理
*
* @author wang.q
* @date 2017年10月11日
*/
@Controller
@RequestMapping("/column")
public class BaseCodeController {
private final static Logger logger = LoggerFactory.getLogger(BaseCodeController.class);
@Autowired
private BaseCodeService baseCodeService;
/**
* 分页查询栏目信息
*
* @param request
* @param response
* @return
*/
@RequestMapping("/columnArry")
@ResponseBody
public PageDTO columnArry(HttpServletRequest request, HttpServletResponse response) {
logger.info("进入查询当前用户发布的栏目的控制层方法");
Thread.currentThread().setName(UUID.randomUUID().toString());
PageDTO pageDTO = new PageDTO();
try {
String rowsVal = request.getParameter("rows");
String page = request.getParameter("page");
String codeType = request.getParameter("codeType");
String codeCname = request.getParameter("codeCname");
String orderNo = request.getParameter("orderNo");
int rows = Integer.parseInt(rowsVal);
int startRow = rows * (Integer.parseInt(page) - 1);
List<BaseCode> list = baseCodeService.queryBaseCode(startRow, rows, codeType, codeCname, orderNo);
pageDTO.setPage(Integer.parseInt(page));
pageDTO.setStartRow(startRow);
pageDTO.setDataRows(list);
int count = baseCodeService.countBaseCode(codeType, codeCname, orderNo);
pageDTO.setTotal(count % rows == 0 ? count / rows : (count / rows + 1));
pageDTO.setRecords(count);
pageDTO.setPage(Integer.parseInt(page));
} catch (Exception e) {
logger.info("查询当前用户发布的栏目失败【{}】", e.getMessage());
e.printStackTrace();
}
logger.info("跳出查询当前用户发布的栏目的控制层方法");
return pageDTO;
}
/**
* 添加栏目
*
* @param request
* @param response
* @return
*/
@RequestMapping("/addColumn")
@ResponseBody
public Message addColumn(HttpServletRequest request, HttpServletResponse response) {
logger.info("进入新建栏目控制层方法");
Message msg = new Message();
Thread.currentThread().setName(UUID.randomUUID().toString());
String codeType = request.getParameter("codeType");
String codeCname = request.getParameter("codeCname");
//String orderNo = request.getParameter("orderNo");
String branchId = request.getParameter("branchId");
//后来加的参数
String radioValue = request.getParameter("radioValue");
String selectSec = request.getParameter("selectSec");
String thirdCodeCnames = request.getParameter("thirdCodeCnames");
//String thirdOrderNos = request.getParameter("thirdOrderNos");
if ("thr".equals(radioValue)) {
codeType = selectSec;
codeCname = thirdCodeCnames;
//orderNo =thirdOrderNos;
}
logger.info("请求参数codeType:【{}】codeCname:【{}】"
+ "branchId:【{}】radioValue:【{}】,selectSec:【{}】"
+ ",thirdCodeCnames:【{}】"
, codeType, codeCname, branchId, radioValue, selectSec, thirdCodeCnames);
BaseCode baseCode = new BaseCode();
baseCode.setCodeCname(codeCname);
baseCode.setCodeType(codeType);
//baseCode.setOrderNo(orderNo);
baseCode.setBranchId(branchId);
logger.info("入参service层的baseCode【{}】", JsonUtil.objectToJackson(baseCode));
try {
msg = baseCodeService.saveBaseCode(baseCode);
} catch (Exception e) {
logger.info("新建栏目失败【{}】", e.getMessage());
e.printStackTrace();
}
logger.info("跳出新建栏目的控制层方法");
return msg;
}
/**
* 更新栏目信息
*
* @param request
* @param response
* @return
*/
@RequestMapping("/updateColumn")
@ResponseBody
public Message updateColumn(HttpServletRequest request, HttpServletResponse response) {
logger.info("进入更新栏目控制层方法");
Message msg = new Message();
Thread.currentThread().setName(UUID.randomUUID().toString());
String codeType = request.getParameter("codeType");
String codeCname = request.getParameter("codeCname");
Integer id = Integer.valueOf(request.getParameter("id"));
logger.info("接收的id[{}]", id);
String codeCode = request.getParameter("codeCode");
String codeEname = request.getParameter("codeEname");
String codeTname = request.getParameter("codeTname");
String createTime = request.getParameter("createTime");
String createUser = request.getParameter("createUser");
//String orderNo = request.getParameter("orderNo");
String state = request.getParameter("state");
String companyId = request.getParameter("companyId");
String branchId = request.getParameter("branchId");
BaseCode baseCode = new BaseCode();
baseCode.setId(id);
baseCode.setCodeCname(codeCname);
baseCode.setCodeType(codeType);
baseCode.setCodeCode(codeCode);
baseCode.setCodeEname(codeEname);
baseCode.setCodeTname(codeTname);
baseCode.setCompanyId(companyId);
baseCode.setBranchId(branchId);
if (StringUtils.isNotBlank(createTime) && !createTime.equals("")) {
baseCode.setCreateTime(DateUtil.convertStringToDate(createTime, DateUtil.YMDHMS));
}
baseCode.setCreateUser(createUser);
//baseCode.setOrderNo(orderNo);
baseCode.setState(state);
try {
msg = baseCodeService.updateBaseCode(baseCode);
} catch (Exception e) {
logger.info("更新栏目失败【{}】", e.getMessage());
e.printStackTrace();
}
logger.info("跳出更新栏目控制层方法");
return msg;
}
/**
* 修改栏目信息
*
* @param request
* @param response
* @return
*/
@RequestMapping("/changeState")
@ResponseBody
public Message changeState(HttpServletRequest request, HttpServletResponse response) {
logger.info("进入修改栏目状态栏目控制层方法");
Message msg = new Message();
Thread.currentThread().setName(UUID.randomUUID().toString());
String ids = request.getParameter("ids");
try {
msg = baseCodeService.queryBaseCode(ids);
} catch (Exception e) {
logger.info("修改栏目失败【{}】", e.getMessage());
e.printStackTrace();
}
logger.info("跳出修改栏目控制层方法");
return msg;
}
/**
* 删除栏目
*
* @param request
* @param response
* @return
*/
@RequestMapping("/delColumn")
@ResponseBody
public Message delColumn(HttpServletRequest request, HttpServletResponse response) {
logger.info("进入删除栏目状态栏目控制层方法");
Message msg = new Message();
Thread.currentThread().setName(UUID.randomUUID().toString());
String ids = request.getParameter("ids");
try {
msg = baseCodeService.delBaseCode(ids);
} catch (Exception e) {
logger.info("修改栏目失败【{}】", e.getMessage());
e.printStackTrace();
}
logger.info("跳出删除栏目控制层方法");
return msg;
}
/**
* 根据code查询基础数据集合
*
* @param request
* @param response
* @return
* @throws Exception
*/
@RequestMapping(value = "/queryBasicData")
@ResponseBody
public Message getSMSCode(HttpServletRequest request, HttpServletResponse response) throws Exception {
response.setHeader("Access-Control-Allow-Origin", "*");
String basicType = request.getParameter("bType");
Message msg = new Message();
Map<String, Object> policyMap = new HashMap<String, Object>();
// 银行列表信息
List<BaseCode> bankList = new ArrayList<BaseCode>();
bankList = baseCodeService.queryBaseCodeByType(basicType);
policyMap.put("baseList", bankList);
msg.setInfo("成功");
msg.setObject(policyMap);
msg.setResult(true);
return msg;
}
/**
* 获取栏目全部信息
*
* @param request
* @param response
* @return
* @throws Exception
*/
@RequestMapping(value = "/queryColumn")
@ResponseBody
public Message getColumn(HttpServletRequest request, HttpServletResponse response) throws Exception {
response.setHeader("Access-Control-Allow-Origin", "*");
Message msg = new Message();
Map<String, Object> policyMap = new HashMap<String, Object>();
// 查询栏目列表
List<BaseCode> columnList = baseCodeService.queryColumn();
policyMap.put("columnList", columnList);
msg.setInfo("成功");
msg.setObject(policyMap);
msg.setResult(true);
return msg;
}
/**
* 获取栏目树
*
* @param request
* @param response
* @return
* @throws Exception
*/
@RequestMapping(value = "/columnTree")
@ResponseBody
public Message columnTree(HttpServletRequest request, HttpServletResponse response) throws Exception {
response.setHeader("Access-Control-Allow-Origin", "*");
Message msg = new Message();
Map<String, Object> policyMap = new HashMap<String, Object>();
String codeCode = request.getParameter("codeCode");
// 查询栏目树
List<BaseCodeTree> columnList = baseCodeService.columnTree(codeCode);
policyMap.put("columnList", columnList);
msg.setInfo("成功");
msg.setObject(policyMap);
msg.setResult(true);
return msg;
}
/**
* 操作栏目排序
*
* @param request
* @param response
* @return
* @throws Exception
*/
@RequestMapping(value = "/operateColumn")
@ResponseBody
public Message operateColumn(HttpServletRequest request, HttpServletResponse response) throws Exception {
logger.info("进入操作栏目排序的控制层方法");
response.setHeader("Access-Control-Allow-Origin", "*");
Message msg = new Message();
String columnId = request.getParameter("id");
String operateType = request.getParameter("operateType");
msg = baseCodeService.operateColumn(columnId, operateType);
logger.info("操作栏目排序的控制层方法结束");
return msg;
}
}

View File

@ -0,0 +1,71 @@
package com.ruoyi.content.controller;
import com.ruoyi.content.message.Message;
import com.ruoyi.content.service.CmsRoleAuthorityService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.Enumeration;
import java.util.List;
/**
* 说明公共controller
*
* @author wang.q
* @date 2017年8月25日
*/
@Controller
@RequestMapping("/common")
public class CommonController {
private static Logger logger = LoggerFactory.getLogger(CommonController.class);
@Autowired
private CmsRoleAuthorityService authorityService;
/**
* 查询访问人的所有菜单权限
*
* @return
*/
@RequestMapping(value = "/menus")
@ResponseBody
public Message menus(HttpServletRequest req, HttpServletResponse res) {
System.out.println("----------menus------------menus-------------menus------menus----------");
Enumeration<String> headerNames = req.getHeaderNames();
while (headerNames.hasMoreElements()) {
//获取每个请求头名称
String headerName = headerNames.nextElement();
//跟距请求头获取请求值
String value = req.getHeader(headerName);
System.out.println(headerName);
System.out.println(value);
}
System.out.println("--------menus----------menus---------menus----------menus------menus--------");
Message msg = new Message();
try {
List<?> list = authorityService.queryUserRole();
if (list != null && list.size() > 0) {
msg.setObject(list);
msg.setResult(true);
} else {
msg.setResult(false);
msg.setInfo("未获取菜单,或您已离线。请重新登录!");
}
} catch (Exception e) {
// TODO: handle exception
msg.setResult(false);
msg.setInfo(e.getMessage());
logger.info("获取菜单失败【{}】", e.getMessage());
e.printStackTrace();
}
return msg;
}
}

View File

@ -28,10 +28,15 @@ public class GalleryController extends BaseController {
private GalleryService galleryService;
@GetMapping()
public String adverts() {
public String gallery() {
return prefix + "/gallery";
}
@GetMapping("page")
public String galleryPage() {
return prefix + "/list";
}
/**
* 上传图库图片
*

View File

@ -0,0 +1,60 @@
package com.ruoyi.content.controller;
import com.ruoyi.content.domain.LdComParty;
import com.ruoyi.content.message.Message;
import com.ruoyi.content.service.LdComService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
/**
* @author qin.hx
* @ClassName: ArticleAdController
* @Description: TODO(广告处理控制层)
* @date 2018年4月26日
*/
@Controller
@RequestMapping("/ldcom")
public class LdComController {
private static final Logger LOGGER = LoggerFactory.getLogger(LdComController.class);
@Autowired
private LdComService ldComService;
/**
* 查询所有广告列表本程序调用
*
* @param request
* @param response
* @return
*/
@RequestMapping("/queryldcomList")
@ResponseBody
public Message queryldcomList(HttpServletRequest request, HttpServletResponse response) {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
LOGGER.info("获取渠道支公司列表控制层方法开始");
Message msg = new Message();
Map<String, Object> adMap = new HashMap<String, Object>();
// 广告列表信息
List<LdComParty> ldcomList = ldComService.queryldcomList();
adMap.put("ldcomList", ldcomList);
msg.setInfo("成功");
msg.setObject(adMap);
msg.setResult(true);
LOGGER.info("获取渠道支公司列表控制层方法结束");
return msg;
}
}

View File

@ -0,0 +1,479 @@
package com.ruoyi.content.controller;
import com.ruoyi.content.domain.PageDTO;
import com.ruoyi.content.message.Message;
import com.ruoyi.content.service.LibraryService;
import com.ruoyi.content.utils.CheckUtil;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.HashMap;
import java.util.List;
import java.util.UUID;
/**
* 说明文章管理
*
* @author Ma.C
* @date 2018年5月2日
*/
@Controller
@RequestMapping("/article")
public class LibraryManageController {
private final static Logger logger = LoggerFactory.getLogger(LibraryManageController.class);
@Autowired
private LibraryService libraryService;
@Autowired
private CheckUtil checkUtil;
/**
* 查询文库信息
*
* @param request
* @param response
* @return
*/
@RequestMapping("/libraryArry")
@ResponseBody
public PageDTO libraryArry(HttpServletRequest request, HttpServletResponse response) {
logger.info("查询文库列表的控制层方法开始!");
Thread.currentThread().setName(UUID.randomUUID().toString());
PageDTO pageDTO = new PageDTO();
try {
String rowsVal = request.getParameter("rows");
String page = request.getParameter("page");
String articelName = request.getParameter("articelName");
String articleThirdTypeInit = request.getParameter("articleThirdTypeInit");
String channel = request.getParameter("channel");
String special = request.getParameter("special");
String articleState = request.getParameter("articleState");
if (articleThirdTypeInit != null && !"".equals(articleThirdTypeInit.trim())) {
channel = articleThirdTypeInit;
} else {
special = channel;
}
int rows = Integer.parseInt(rowsVal);
int startRow = rows * (Integer.parseInt(page) - 1);
List<HashMap<String, Object>> list = libraryService.queryLibrary(startRow, rows, articelName,
special, channel, articleState);
pageDTO.setPage(Integer.parseInt(page));
pageDTO.setStartRow(startRow);
pageDTO.setDataRows(list);
//int count = libraryService.countArticleInfoByState(articelName,special, channel, articleState);
int count = libraryService.countArticleByParam(articelName, special, channel, articleState);
pageDTO.setTotal(count % rows == 0 ? count / rows : (count / rows + 1));
pageDTO.setRecords(count);
pageDTO.setPage(Integer.parseInt(page));
} catch (Exception e) {
logger.info("查询当前用户发布的文章失败【{}】", e.getMessage());
e.printStackTrace();
}
logger.info("查询文章列表的控制层方法结束!");
return pageDTO;
}
/**
* 更新文章栏目关系
*
* @param request
* @param response
* @return
*/
/* @RequestMapping("/addLibrary")
@ResponseBody
public Message articleUp(HttpServletRequest request, HttpServletResponse response) {
logger.info("给文章添加栏目的控制层方法开始!");
response.setHeader("Access-Control-Allow-Origin", "*");
Message resultMsg = new Message();
Thread.currentThread().setName(UUID.randomUUID().toString());
CmsSysUser userInfoDTO = (CmsSysUser) SecurityUtils.getSubject().getPrincipal();
String companyId = userInfoDTO.getCompanyId();
String branchId = userInfoDTO.getBranchId();
logger.info("获取修改文章信息页面参数!");
String channelId = request.getParameter("channelId");
String articleInfo = request.getParameter("articleInfo");
logger.info("保存的文章列表是:"+articleInfo);
JsonArray jsonArray = new JsonParser().parse(articleInfo).getAsJsonArray();
logger.info("jsonArray:"+jsonArray);
int successNum = 0;
try {
for (JsonElement ele : jsonArray) {
JsonObject obj = ele.getAsJsonObject();
logger.info("单个保存参数信息articleId【{}】publishId【{}】articleName【{}】",obj.get("articleId").toString(),
obj.get("publishId").toString(),obj.get("articleName").toString());
//判断是业务员还是管理员创建的文章
// int count = libraryService.checkCreateUser(articleId,originalUrl,createUser);
// if(count>0) {
// logger.info("爬取业务员文章url失败");
// }
//根据栏目id去查一二级栏目
BaseCode baseCode = new BaseCode();
baseCode = libraryService.queryBaseCodeByChannelId(channelId);
// String publishId = userInfoDTO.getUserId() + "a" + articleId;
//保存在文库表
ArticleChannel articleChannel = new ArticleChannel();
articleChannel.setArticleId(Integer.valueOf(obj.get("articleId").getAsInt()));
articleChannel.setPublishId(obj.get("publishId").getAsString());
articleChannel.setArticleName(obj.get("articleName").getAsString());
articleChannel.setSpecial(baseCode.getCodeType());
articleChannel.setChannel(baseCode.getCodeCode());
articleChannel.setCompanyId(companyId);
articleChannel.setBranchId(branchId);
articleChannel.setPublishDate(DateUtil.currentDate());
articleChannel.setPublishTime(DateUtil.currentTime());
articleChannel.setUpdateDate(DateUtil.currentDate());
articleChannel.setUpdateTime(DateUtil.currentTime());
articleChannel.setArticleState("0");
Message msg = libraryService.addLibrary(articleChannel);
if(msg.getResult()) {
successNum++;
}
}
if(successNum==0) {
resultMsg.setResult(false);
resultMsg.setInfo("收录失败!已有其他版本的文章被收录到同一栏目下!");
}else {
resultMsg.setInfo("添加成功!");
resultMsg.setResult(true);
HashMap<String, Object> resultMap = new HashMap<String, Object>();
resultMap.put("successNum", successNum);
resultMap.put("failed", jsonArray.size()-successNum);
resultMsg.setObject(resultMap);
}
} catch (Exception e) {
e.printStackTrace();
logger.info("修改文章信息失败【{}】" , e.getMessage());
}
logger.info("修改文章信息的控制层方法结束!");
return resultMsg;
}*/
/**
* 更新文章栏目关系
*
* @param request
* @param response
* @return
*/
@RequestMapping("/addLibrary")
@ResponseBody
public Message articleUp(HttpServletRequest request, HttpServletResponse response) {
logger.info("给文章添加栏目的控制层方法开始!");
response.setHeader("Access-Control-Allow-Origin", "*");
Message msg = new Message();
Thread.currentThread().setName(UUID.randomUUID().toString());
String companyId = "1";
String branchId = "86";
String channelId = request.getParameter("channelId");
String articleInfoList = request.getParameter("articleInfo");
logger.info("批量收录文章控制层获取接口入参参数companyId【{}】branchId【{}】channelId【{}】articleInfoList【{}】", companyId,
branchId, channelId, articleInfoList);
msg = libraryService.addLibrary(companyId, branchId, channelId, articleInfoList);
logger.info("修改文章信息的控制层方法结束!");
return msg;
}
@RequestMapping("/removeArticleItem")
@ResponseBody
public Message removeArticleItem(HttpServletRequest request, HttpServletResponse response) {
logger.info("批量移除栏目下文章控制层方法开始!");
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
String companyId = "1";
String branchId = "86";
String channelId = request.getParameter("channelId");
String articleInfoList = request.getParameter("articleInfo");
logger.info("批量收录文章控制层获取接口入参参数companyId【{}】branchId【{}】channelId【{}】articleInfoList【{}】", companyId,
branchId, channelId, articleInfoList);
msg = libraryService.removeArticleItem(companyId, branchId, channelId, articleInfoList);
logger.info("修改文章信息的控制层方法结束!");
return msg;
}
/**
* @Title: changeSate
* @Description: TODO(文章发布)
*/
@RequestMapping("/changeSate")
@ResponseBody
public Message changeSate(HttpServletRequest request, HttpServletResponse response) {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("文章发布控制层开始!");
//修改文章状态
String ids = request.getParameter("ids");//文章Id
String eState = request.getParameter("eState");
String sState = request.getParameter("sState");
String publishId = request.getParameter("publishId");
try {
msg = libraryService.changeSate(ids, eState, sState, publishId);
// logger.info("开始调用消息推送方法!");
// templateSendService.newArticleSend(companyId);
// logger.info("结束调用消息推送!");
} catch (Exception e) {
logger.info("发布文章失败【{}】", e.getMessage());
e.printStackTrace();
}
logger.info("文章发布控制层结束!");
return msg;
}
/**
* 删除文章信息
*
* @param request
* @param response
* @return
*/
@RequestMapping("/delLibrary")
@ResponseBody
public Message delLibrary(HttpServletRequest request, HttpServletResponse response) {
logger.info("删除文章信息的控制层方法开始!");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
String id = request.getParameter("ids");
try {
msg = libraryService.delArticle(id);
} catch (Exception e) {
e.printStackTrace();
logger.info("删除文章信息失败【{}】", e.getMessage());
}
logger.info("删除文章信息的控制层方法结束!");
return msg;
}
@RequestMapping("/preview")
@ResponseBody
public Message preview(HttpServletRequest request, HttpServletResponse response) {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("文章预览控制层开始!");
//获取文章浏览详情
String publishId = request.getParameter("publishId");//文章Id
logger.info("预览接收到的publishId[{}]", publishId);
msg = libraryService.queryEditUrlByPublishId(publishId);
logger.info("文章预览控制层结束【{}】!", msg);
return msg;
}
/**
* @Title: articleSend
* @Description: TODO(文章推送)
*/
@RequestMapping("/articleSend")
@ResponseBody
public Message articleSend(HttpServletRequest request, HttpServletResponse response) {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
String openId = "o43yZt9cXHtRwvNF8ZdpGw9r0RGI";
logger.info("文章推送控制层开始!");
//修改文章状态
String articleId = request.getParameter("articleId");//文章Id
String publishId = request.getParameter("publishId");
String agentCode = request.getParameter("agentCode");
String sendType = request.getParameter("sendType"); //推送方式 0推送企业号/个人1复制链路
String partyId = request.getParameter("partyId");
String data = publishId + "-" + partyId;
if (StringUtils.isNotBlank(partyId) && checkUtil.isRepeat(openId, "articleSend", data)) {
logger.info("openId【{}】文章在30秒内重复推送data【{}】", openId, data);
msg.setInfo("文章已推送");
msg.setResult(false);
return msg;
}
try {
msg = libraryService.articleSend(articleId, publishId, agentCode, sendType, partyId, null);
} catch (Exception e) {
logger.info("发布文章失败【{}】", e.getMessage());
e.printStackTrace();
}
logger.info("文章发布控制层结束!");
return msg;
}
/**
* @Title: onTimeSend
* @Description: TODO(文章定时推送)
*/
@RequestMapping("/onTimeSend")
@ResponseBody
public Message onTimeSend(HttpServletRequest request, HttpServletResponse response) {
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
logger.info("文章定时推送控制层开始!");
//修改文章状态
String articleId = request.getParameter("articleId");
String publishId = request.getParameter("publishId");
String agentCode = request.getParameter("agentCode");
String sendType = request.getParameter("sendType");
String partyId = request.getParameter("partyId");
String sendTime = request.getParameter("sendTime");
try {
msg = libraryService.onTimeSend(articleId, publishId, agentCode, sendType, partyId, sendTime);
} catch (Exception e) {
logger.info("定时发布文章失败【{}】", e.getMessage());
e.printStackTrace();
}
logger.info("文章定时推送控制层结束!");
return msg;
}
/**
* 更新文库信息进行排序
*
* @param request
* @param response
* @return
*/
@RequestMapping("/updateLibrary")
@ResponseBody
public Message updateLibrary(HttpServletRequest request, HttpServletResponse response) {
logger.info("更新文库信息的控制层方法开始!");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
String id = request.getParameter("id");
String orderNo = request.getParameter("orderNo");
try {
msg = libraryService.updateLibrary(id, orderNo);
} catch (Exception e) {
e.printStackTrace();
logger.info("更新文库信息失败【{}】", e.getMessage());
}
logger.info("更新文库信息的控制层方法结束!");
return msg;
}
/**
* 删除文章信息
*
* @param request
* @param response
* @return
*/
@RequestMapping("/delLibraryHTML")
@ResponseBody
public Message delLibraryHTML(HttpServletRequest request, HttpServletResponse response) {
logger.info("删除文章信息的控制层方法开始!");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
String id = request.getParameter("ids");
try {
msg = libraryService.delLibraryHTML(id);
} catch (Exception e) {
e.printStackTrace();
logger.info("删除文章信息失败【{}】", e.getMessage());
}
logger.info("删除文章信息的控制层方法结束!");
return msg;
}
/**
* 批量转换文章和栏目的关系
*
* @param request
* @param response
* @return
*/
@RequestMapping("/onkeyExChange")
@ResponseBody
public Message onkeyExChange(HttpServletRequest request, HttpServletResponse response) {
logger.info("给文章转换栏目的控制层方法开始!");
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
String companyId = "1";
String branchId = "86";
String from = request.getParameter("from");
String to = request.getParameter("to");
logger.info("接收的请求参数from:【{}】,to【{}】", from, to);
try {
msg = libraryService.onkeyExChange(from, to, companyId, branchId);
} catch (Exception e) {
e.printStackTrace();
logger.info("修改文章信息失败【{}】", e.getMessage());
}
logger.info("修改文章信息的控制层方法结束!");
return msg;
}
/**
* 查询待推送的文章信息
*
* @param request
* @param response
* @return
*/
@RequestMapping("/noSendPublishArticle")
@ResponseBody
public PageDTO noSendPublishArticle(HttpServletRequest request, HttpServletResponse response) {
logger.info("查询未推送出去的文章列表!");
Thread.currentThread().setName(UUID.randomUUID().toString());
PageDTO pageDTO = new PageDTO();
try {
String rowsVal = request.getParameter("rows");
String page = request.getParameter("page");
int rows = Integer.parseInt(rowsVal);
int startRow = rows * (Integer.parseInt(page) - 1);
String articleId = request.getParameter("articleId");
String publishId = request.getParameter("publishId");
// 1.根据文章id去查publish表找出该文章对应所有业务员
pageDTO = libraryService.noSendPublishArticle(articleId, startRow, rows, publishId);
pageDTO.setPage(Integer.parseInt(page));
return pageDTO;
} catch (Exception e) {
logger.info("系统异常!", e);
return pageDTO;
}
}
/**
* 批量转换文章和栏目的关系
*
* @param request
* @param response
* @return
*/
@RequestMapping("/delOnTimeTask")
@ResponseBody
public Message delOnTimeTask(HttpServletRequest request, HttpServletResponse response) {
logger.info("删除未执行的定时任务开始!");
response.setHeader("Access-Control-Allow-Origin", "*");
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
String delId = request.getParameter("delId");
logger.info("接收的请求参数delId:【{}】", delId);
try {
msg = libraryService.delOnTimeTask(delId);
} catch (Exception e) {
e.printStackTrace();
logger.info("删除未执行的定时任务失败【{}】", e.getMessage());
}
logger.info("删除未执行的定时任务控制层方法结束!");
return msg;
}
}

View File

@ -0,0 +1,36 @@
package com.ruoyi.content.controller;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* 说明报表管理
*
* @author Ma.C
* @date 2018年8月10日
*/
@Controller
@RequestMapping("/report")
public class ReportController {
private final static Logger logger = LoggerFactory.getLogger(ReportController.class);
// @RequestMapping("/reportList")
// public void reportList(HttpServletRequest request, HttpServletResponse response) {
// Thread.currentThread().setName(UUID.randomUUID().toString());
// ModelAndView mv = new ModelAndView();
// mv.setViewName("/micro/report/report");
// logger.info("进入报表管理界面!");
// try {
// response.sendRedirect("http://sales-int.ihxlife.com/gv/dist/index.html");
// } catch (IOException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// }
// return;
// }
//
}

View File

@ -0,0 +1,212 @@
package com.ruoyi.content.controller;
import com.ruoyi.content.domain.ClickTrackInfo;
import com.ruoyi.content.domain.ClickUserInfo;
import com.ruoyi.content.domain.PageDTO;
import com.ruoyi.content.domain.UserInfo;
import com.ruoyi.content.exception.BusinessException;
import com.ruoyi.content.mapper.ArticlePublishTrackMapper;
import com.ruoyi.content.mapper.CmsSysUserExMapper;
import com.ruoyi.content.message.Message;
import com.ruoyi.content.service.StaffArticleManageService;
import com.ruoyi.content.utils.JsonUtil;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.servlet.http.HttpServletRequest;
import java.io.UnsupportedEncodingException;
import java.util.*;
@Controller
@RequestMapping("/article")
public class StaffArticleManageController {
private final static Logger logger = LoggerFactory.getLogger(ArticleManageController.class);
@Autowired
private StaffArticleManageService staffArticleManageService;
@Autowired
private CmsSysUserExMapper cmsSysUserExMapper;
@Autowired
private ArticlePublishTrackMapper articlePublishTrackMapper;
/**
* 查询该文章有多少业务员发布过
*
* @param request
* @return
*/
@RequestMapping("/articleSharingTrackList")
@ResponseBody
public PageDTO articleSharingTrack(HttpServletRequest request) {
logger.info("查询文章分享阅读轨迹的控制层方法开始!");
Thread.currentThread().setName(UUID.randomUUID().toString());
PageDTO pageDTO = new PageDTO();
try {
String rowsVal = request.getParameter("rows");
String page = request.getParameter("page");
int rows = Integer.parseInt(rowsVal);
int startRow = rows * (Integer.parseInt(page) - 1);
String articleId = request.getParameter("articleId");
// 1.根据文章id去查publish表找出该文章对应所有业务员
pageDTO = staffArticleManageService.querySalesmanByArticleId(articleId, startRow, rows);
pageDTO.setPage(Integer.parseInt(page));
return pageDTO;
} catch (Exception e) {
logger.info("系统异常!", e);
return pageDTO;
}
}
/**
* 查询该文章
*
* @param request
* @return
*/
@RequestMapping("/publishInfoList")
@ResponseBody
public PageDTO publishInfoList(HttpServletRequest request) {
Thread.currentThread().setName(UUID.randomUUID().toString());
PageDTO pageDTO = new PageDTO();
try {
String rowsVal = request.getParameter("rows");
String page = request.getParameter("page");
int rows = Integer.parseInt(rowsVal);
int startRow = rows * (Integer.parseInt(page) - 1);
String userId = request.getParameter("userId");
String articleId = request.getParameter("articleId");
logger.info("查询该业务员userId[{}]的文章articleId[{}]发布情况开始!", userId, articleId);
// 1.根据文章id去查publish表找出该文章对应所有业务员
pageDTO = staffArticleManageService.queryClickInfoByUserId(userId, articleId, startRow, rows);
pageDTO.setPage(Integer.parseInt(page));
return pageDTO;
} catch (Exception e) {
logger.info("系统异常!", e);
return pageDTO;
}
}
/**
* 文章分享轨迹信息查询
*
* @param request
* @return
*/
@RequestMapping("/articleSharingTrackInfo")
@ResponseBody
public Message articleSharingTrackInfo(HttpServletRequest request) {
Thread.currentThread().setName(UUID.randomUUID().toString());
Message msg = new Message();
Map<String, Object> returnMap = new HashMap<String, Object>();
List<ClickUserInfo> clickUserInfos = new ArrayList<ClickUserInfo>();
ClickTrackInfo clickTrackInfo = new ClickTrackInfo();
logger.info("查询用户查看分享文章轨迹信息的控制层方法开始!");
String clickId = request.getParameter("clickId");
if (StringUtils.isBlank(clickId)) {
returnMap.put("ClickTrackInfo", clickTrackInfo);
} else {
clickTrackInfo = staffArticleManageService.articleSharingTrackInfo(clickId);
//发布人id
UserInfo userInfo = new UserInfo();
String publishUserId = clickTrackInfo.getPublishUserId();
if (!publishUserId.contains("cofms")) {
// UserInfoMapper
userInfo = staffArticleManageService.queryPublishUserInfo(publishUserId);
try {
userInfo.setNickName(new String(Base64.getDecoder().decode(userInfo.getNickName()), "UTF-8"));
} catch (UnsupportedEncodingException e) {
throw new BusinessException("用户昵称解码异常[{" + e.getMessage() + "}]");
}
logger.info("转换后的用户昵称为:" + userInfo.getNickName());
} else {
userInfo.setNickName("后台管理员");
userInfo.setHeadImgUrl("/static/common/image/logo.png");
userInfo.setOpenid("");
}
returnMap.put("userInfo", userInfo);
String clickUserInfo = clickTrackInfo.getClickUserInfo();
if (StringUtils.isNotBlank(clickUserInfo)) {
clickUserInfos = JsonUtil.JsonToCollectionType(clickUserInfo, List.class, ClickUserInfo.class);
for (ClickUserInfo clickUserInfo2 : clickUserInfos) {
try {
clickUserInfo2.setNickName(
new String(Base64.getDecoder().decode(clickUserInfo2.getNickName()), "UTF-8"));
} catch (UnsupportedEncodingException e) {
throw new BusinessException("用户昵称解码异常[{" + e.getMessage() + "}]");
}
}
}
returnMap.put("ClickUserInfoList", clickUserInfos);
String clickUserNickname = clickTrackInfo.getClickUserNickname();
if (StringUtils.isNotBlank(clickUserNickname)) {
try {
clickTrackInfo.setClickUserNickname(
new String(Base64.getDecoder().decode(clickUserNickname), "UTF-8"));
} catch (UnsupportedEncodingException e) {
throw new BusinessException("用户昵称解码异常[{" + e.getMessage() + "}]");
}
}
returnMap.put("ClickTrackInfo", clickTrackInfo);
msg.setInfo("获取浏览详情查询成功");
msg.setResult(true);
msg.setObject(returnMap);
}
logger.info("查询用户查看分享文章轨迹信息的控制层方法结束!");
return msg;
}
// // 复制链路
// @RequestMapping("/copyShareUrl")
// @ResponseBody
// public ModelAndView copyShareUrl(ModelAndView modelAndView, String articleId, String publishId) {
// CmsSysUser userInfoDTO = (CmsSysUser) SecurityUtils.getSubject().getPrincipal();
// String email = userInfoDTO.getEmail();
// String companyId = userInfoDTO.getCompanyId();
// CmsSysUser cmsSysUser = cmsSysUserExMapper.queryLoginInfoByEmail(email);
// String userId = cmsSysUser.getUserId();
//// ArticleInfo articleInfo = staffArticleManageService.queryModifiedViewUrl(articleId);
// ArticlePublishTrackExample example = new ArticlePublishTrackExample();
// ArticlePublishTrackExample.Criteria criteria = example.createCriteria();
// criteria.andPublishIdEqualTo(publishId);
// criteria.andArticleIdEqualTo(String.valueOf(articleId));
// List<ArticlePublishTrack> aplist = articlePublishTrackMapper.selectByExample(example);
// // http://hx-cdn.oss-cn-szfinance-a.aliyuncs.com/contentMKT/console/template/html/view/20180525/272b20180525074506941010.html
//// String viewUrl = articleInfo.getModifiedViewUrl();
// String viewUrl = aplist.get(0).getPublishViewUrl();
// String[] viewUrls = viewUrl.split("/");
// // 272b20180525074506941010.html
// String url = viewUrls[viewUrls.length - 1];
// String[] urls = url.split("b");
// // 20180525074506941010.html
// String url1 = urls[urls.length - 1];
// String versionNumber = url1.substring(0, 20);
// logger.info("版本号versionNumber[{}]", versionNumber);
//
// modelAndView.setViewName("/micro/article/copyShareUrl");
// modelAndView.addObject("articleId", articleId);
// modelAndView.addObject("versionNumber", versionNumber);
// modelAndView.addObject("userId", userId);
// modelAndView.addObject("companyId", companyId);
// return modelAndView;
//
// }
}

View File

@ -0,0 +1,5 @@
package com.ruoyi.content.domain;
public class AdvertisementDTO {
}

View File

@ -0,0 +1,451 @@
package com.ruoyi.content.domain;
public class AdvertisementInfo {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.AD_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private Integer adId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.AD_TITLE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String adTitle;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.AD_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String adType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.AD_IMAGE_url
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String adImageUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.AD_LINK_url
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String adLinkUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.AD_CONTENT
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String adContent;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.AD_STATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String adState;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column advertisement_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.AD_ID
*
* @return the value of advertisement_info.AD_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public Integer getAdId() {
return adId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.AD_ID
*
* @param adId the value for advertisement_info.AD_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setAdId(Integer adId) {
this.adId = adId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.COMPANY_ID
*
* @return the value of advertisement_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.COMPANY_ID
*
* @param companyId the value for advertisement_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.AD_TITLE
*
* @return the value of advertisement_info.AD_TITLE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getAdTitle() {
return adTitle;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.AD_TITLE
*
* @param adTitle the value for advertisement_info.AD_TITLE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setAdTitle(String adTitle) {
this.adTitle = adTitle;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.AD_TYPE
*
* @return the value of advertisement_info.AD_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getAdType() {
return adType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.AD_TYPE
*
* @param adType the value for advertisement_info.AD_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setAdType(String adType) {
this.adType = adType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.AD_IMAGE_url
*
* @return the value of advertisement_info.AD_IMAGE_url
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getAdImageUrl() {
return adImageUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.AD_IMAGE_url
*
* @param adImageUrl the value for advertisement_info.AD_IMAGE_url
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setAdImageUrl(String adImageUrl) {
this.adImageUrl = adImageUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.AD_LINK_url
*
* @return the value of advertisement_info.AD_LINK_url
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getAdLinkUrl() {
return adLinkUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.AD_LINK_url
*
* @param adLinkUrl the value for advertisement_info.AD_LINK_url
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setAdLinkUrl(String adLinkUrl) {
this.adLinkUrl = adLinkUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.AD_CONTENT
*
* @return the value of advertisement_info.AD_CONTENT
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getAdContent() {
return adContent;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.AD_CONTENT
*
* @param adContent the value for advertisement_info.AD_CONTENT
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setAdContent(String adContent) {
this.adContent = adContent;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.AD_STATE
*
* @return the value of advertisement_info.AD_STATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getAdState() {
return adState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.AD_STATE
*
* @param adState the value for advertisement_info.AD_STATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setAdState(String adState) {
this.adState = adState;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.CREATE_DATE
*
* @return the value of advertisement_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.CREATE_DATE
*
* @param createDate the value for advertisement_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.CREATE_TIME
*
* @return the value of advertisement_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.CREATE_TIME
*
* @param createTime the value for advertisement_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.CREATE_USER
*
* @return the value of advertisement_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.CREATE_USER
*
* @param createUser the value for advertisement_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.UPDATE_USER
*
* @return the value of advertisement_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.UPDATE_USER
*
* @param updateUser the value for advertisement_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.UPDATE_DATE
*
* @return the value of advertisement_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.UPDATE_DATE
*
* @param updateDate the value for advertisement_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column advertisement_info.UPDATE_TIME
*
* @return the value of advertisement_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column advertisement_info.UPDATE_TIME
*
* @param updateTime the value for advertisement_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
}

View File

@ -0,0 +1,68 @@
package com.ruoyi.content.domain;
public class ArticeClickInfo {
// 浏览者信息
private String clickUserHeadimgurl; // 用户头像url
private String clickUserNickname;// 用户昵称
private String watchTime; // 观察时间
private String createDate; // 浏览时间yyyy-mm-dd
private String createTime; // 浏览时间 HH-mm
private String shareState; // 分享状态 0-未分享1-已分享
public ArticeClickInfo() {
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getClickUserHeadimgurl() {
return clickUserHeadimgurl;
}
public void setClickUserHeadimgurl(String clickUserHeadimgurl) {
this.clickUserHeadimgurl = clickUserHeadimgurl;
}
public String getClickUserNickname() {
// if (StringUtils.isNotBlank(clickUserNickname)) {
// return Base64.getDecoder().decode(clickUserNickname).toString();
// }
return clickUserNickname;
}
public void setClickUserNickname(String clickUserNickname) {
this.clickUserNickname = clickUserNickname;
}
public String getWatchTime() {
return watchTime;
}
public void setWatchTime(String watchTime) {
this.watchTime = watchTime;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getShareState() {
return shareState;
}
public void setShareState(String shareState) {
this.shareState = shareState;
}
}

View File

@ -0,0 +1,130 @@
package com.ruoyi.content.domain;
public class ArticeClickInfoExDTO {
// 浏览者信息
private String clickUserHeadimgurl; // 用户头像url
private String clickUserNickname;// 用户昵称
private String watchTime; // 观察时间
private String createDate; // 浏览时间yyyy-mm-dd
private String createTime; // 浏览时间 HH-mm
private String shareState; // 分享状态 0-未分享1-已分享
private String fromShareState;// 查看文章的人是否已分享,0-未分享,1-对话框分享(包含个人和群组),2-朋友圈分享,5-对话框和朋友圈都分享了'
private String articleId; //文章id
private String articleName;//文章名称
private String pushDate;//发布时间
private String articleAutchor;
private String clickUserInfo;
private String clickId;
public ArticeClickInfoExDTO() {
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getClickUserHeadimgurl() {
return clickUserHeadimgurl;
}
public void setClickUserHeadimgurl(String clickUserHeadimgurl) {
this.clickUserHeadimgurl = clickUserHeadimgurl;
}
public String getClickUserNickname() {
// if (StringUtils.isNotBlank(clickUserNickname)) {
// return Base64.getDecoder().decode(clickUserNickname).toString();
// }
return clickUserNickname;
}
public void setClickUserNickname(String clickUserNickname) {
this.clickUserNickname = clickUserNickname;
}
public String getWatchTime() {
return watchTime;
}
public void setWatchTime(String watchTime) {
this.watchTime = watchTime;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getShareState() {
return shareState;
}
public void setShareState(String shareState) {
this.shareState = shareState;
}
public String getFromShareState() {
return fromShareState;
}
public void setFromShareState(String fromShareState) {
this.fromShareState = fromShareState;
}
public String getArticleId() {
return articleId;
}
public void setArticleId(String articleId) {
this.articleId = articleId;
}
public String getArticleName() {
return articleName;
}
public void setArticleName(String articleName) {
this.articleName = articleName;
}
public String getPushDate() {
return pushDate;
}
public void setPushDate(String pushDate) {
this.pushDate = pushDate;
}
public String getArticleAutchor() {
return articleAutchor;
}
public void setArticleAutchor(String articleAutchor) {
this.articleAutchor = articleAutchor;
}
public String getClickUserInfo() {
return clickUserInfo;
}
public void setClickUserInfo(String clickUserInfo) {
this.clickUserInfo = clickUserInfo;
}
public String getClickId() {
return clickId;
}
public void setClickId(String clickId) {
this.clickId = clickId;
}
}

View File

@ -0,0 +1,547 @@
package com.ruoyi.content.domain;
public class ArticleAdInfo {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.AD_ID
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private Integer adId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.COMPANY_ID
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.AD_TYPE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String adType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.AD_TYPE_NAME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String adTypeName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.AD_LINK_URL
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String adLinkUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.AD_TITLE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String adTitle;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.AD_NAME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String adName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.AD_SUMMARY
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String adSummary;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.AD_COLOR_TYPE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String adColorType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.AD_IMAGE_URL
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String adImageUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.AD_STATE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String adState;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.CREATE_DATE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.CREATE_TIME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.CREATE_USER
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.UPDATE_USER
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.UPDATE_DATE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_ad_info.UPDATE_TIME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
private String updateTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.AD_ID
*
* @return the value of article_ad_info.AD_ID
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public Integer getAdId() {
return adId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.AD_ID
*
* @param adId the value for article_ad_info.AD_ID
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setAdId(Integer adId) {
this.adId = adId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.COMPANY_ID
*
* @return the value of article_ad_info.COMPANY_ID
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.COMPANY_ID
*
* @param companyId the value for article_ad_info.COMPANY_ID
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.AD_TYPE
*
* @return the value of article_ad_info.AD_TYPE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getAdType() {
return adType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.AD_TYPE
*
* @param adType the value for article_ad_info.AD_TYPE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setAdType(String adType) {
this.adType = adType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.AD_TYPE_NAME
*
* @return the value of article_ad_info.AD_TYPE_NAME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getAdTypeName() {
return adTypeName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.AD_TYPE_NAME
*
* @param adTypeName the value for article_ad_info.AD_TYPE_NAME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setAdTypeName(String adTypeName) {
this.adTypeName = adTypeName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.AD_LINK_URL
*
* @return the value of article_ad_info.AD_LINK_URL
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getAdLinkUrl() {
return adLinkUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.AD_LINK_URL
*
* @param adLinkUrl the value for article_ad_info.AD_LINK_URL
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setAdLinkUrl(String adLinkUrl) {
this.adLinkUrl = adLinkUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.AD_TITLE
*
* @return the value of article_ad_info.AD_TITLE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getAdTitle() {
return adTitle;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.AD_TITLE
*
* @param adTitle the value for article_ad_info.AD_TITLE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setAdTitle(String adTitle) {
this.adTitle = adTitle;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.AD_NAME
*
* @return the value of article_ad_info.AD_NAME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getAdName() {
return adName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.AD_NAME
*
* @param adName the value for article_ad_info.AD_NAME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setAdName(String adName) {
this.adName = adName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.AD_SUMMARY
*
* @return the value of article_ad_info.AD_SUMMARY
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getAdSummary() {
return adSummary;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.AD_SUMMARY
*
* @param adSummary the value for article_ad_info.AD_SUMMARY
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setAdSummary(String adSummary) {
this.adSummary = adSummary;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.AD_COLOR_TYPE
*
* @return the value of article_ad_info.AD_COLOR_TYPE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getAdColorType() {
return adColorType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.AD_COLOR_TYPE
*
* @param adColorType the value for article_ad_info.AD_COLOR_TYPE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setAdColorType(String adColorType) {
this.adColorType = adColorType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.AD_IMAGE_URL
*
* @return the value of article_ad_info.AD_IMAGE_URL
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getAdImageUrl() {
return adImageUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.AD_IMAGE_URL
*
* @param adImageUrl the value for article_ad_info.AD_IMAGE_URL
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setAdImageUrl(String adImageUrl) {
this.adImageUrl = adImageUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.AD_STATE
*
* @return the value of article_ad_info.AD_STATE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getAdState() {
return adState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.AD_STATE
*
* @param adState the value for article_ad_info.AD_STATE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setAdState(String adState) {
this.adState = adState;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.CREATE_DATE
*
* @return the value of article_ad_info.CREATE_DATE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.CREATE_DATE
*
* @param createDate the value for article_ad_info.CREATE_DATE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.CREATE_TIME
*
* @return the value of article_ad_info.CREATE_TIME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.CREATE_TIME
*
* @param createTime the value for article_ad_info.CREATE_TIME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.CREATE_USER
*
* @return the value of article_ad_info.CREATE_USER
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.CREATE_USER
*
* @param createUser the value for article_ad_info.CREATE_USER
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.UPDATE_USER
*
* @return the value of article_ad_info.UPDATE_USER
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.UPDATE_USER
*
* @param updateUser the value for article_ad_info.UPDATE_USER
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.UPDATE_DATE
*
* @return the value of article_ad_info.UPDATE_DATE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.UPDATE_DATE
*
* @param updateDate the value for article_ad_info.UPDATE_DATE
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_ad_info.UPDATE_TIME
*
* @return the value of article_ad_info.UPDATE_TIME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_ad_info.UPDATE_TIME
*
* @param updateTime the value for article_ad_info.UPDATE_TIME
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,493 @@
package com.ruoyi.content.domain;
public class ArticleChannel {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private Integer id;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.ARTICLE_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private Integer articleId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.ARTICLE_NAME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String articleName;
private String articleVersion;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.SPECIAL
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String special;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.CHANNEL
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String channel;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.ARTICLE_STATE
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String articleState;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.PUBLISH_DATE
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String publishDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.PUBLISH_TIME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String publishTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.UPDATE_DATE
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.UPDATE_TIME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String updateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.COMPANY_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.BRANCH_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String branchId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.PUBLISH_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String publishId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.ORDER_NO
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private Integer orderNo;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_channel.TOP_TIME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
private String topTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.ID
*
* @return the value of article_channel.ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public Integer getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.ID
*
* @param id the value for article_channel.ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setId(Integer id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.ARTICLE_ID
*
* @return the value of article_channel.ARTICLE_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public Integer getArticleId() {
return articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.ARTICLE_ID
*
* @param articleId the value for article_channel.ARTICLE_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setArticleId(Integer articleId) {
this.articleId = articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.ARTICLE_NAME
*
* @return the value of article_channel.ARTICLE_NAME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getArticleName() {
return articleName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.ARTICLE_NAME
*
* @param articleName the value for article_channel.ARTICLE_NAME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setArticleName(String articleName) {
this.articleName = articleName;
}
public String getArticleVersion() {
return this.articleVersion;
}
public void setArticleVersion(String articleVersion) {
this.articleVersion = articleVersion;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.SPECIAL
*
* @return the value of article_channel.SPECIAL
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getSpecial() {
return special;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.SPECIAL
*
* @param special the value for article_channel.SPECIAL
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setSpecial(String special) {
this.special = special;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.CHANNEL
*
* @return the value of article_channel.CHANNEL
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getChannel() {
return channel;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.CHANNEL
*
* @param channel the value for article_channel.CHANNEL
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setChannel(String channel) {
this.channel = channel;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.ARTICLE_STATE
*
* @return the value of article_channel.ARTICLE_STATE
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getArticleState() {
return articleState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.ARTICLE_STATE
*
* @param articleState the value for article_channel.ARTICLE_STATE
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setArticleState(String articleState) {
this.articleState = articleState;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.PUBLISH_DATE
*
* @return the value of article_channel.PUBLISH_DATE
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getPublishDate() {
return publishDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.PUBLISH_DATE
*
* @param publishDate the value for article_channel.PUBLISH_DATE
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setPublishDate(String publishDate) {
this.publishDate = publishDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.PUBLISH_TIME
*
* @return the value of article_channel.PUBLISH_TIME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getPublishTime() {
return publishTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.PUBLISH_TIME
*
* @param publishTime the value for article_channel.PUBLISH_TIME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setPublishTime(String publishTime) {
this.publishTime = publishTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.UPDATE_DATE
*
* @return the value of article_channel.UPDATE_DATE
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.UPDATE_DATE
*
* @param updateDate the value for article_channel.UPDATE_DATE
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.UPDATE_TIME
*
* @return the value of article_channel.UPDATE_TIME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.UPDATE_TIME
*
* @param updateTime the value for article_channel.UPDATE_TIME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.COMPANY_ID
*
* @return the value of article_channel.COMPANY_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.COMPANY_ID
*
* @param companyId the value for article_channel.COMPANY_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.BRANCH_ID
*
* @return the value of article_channel.BRANCH_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getBranchId() {
return branchId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.BRANCH_ID
*
* @param branchId the value for article_channel.BRANCH_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setBranchId(String branchId) {
this.branchId = branchId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.PUBLISH_ID
*
* @return the value of article_channel.PUBLISH_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getPublishId() {
return publishId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.PUBLISH_ID
*
* @param publishId the value for article_channel.PUBLISH_ID
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setPublishId(String publishId) {
this.publishId = publishId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.ORDER_NO
*
* @return the value of article_channel.ORDER_NO
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public Integer getOrderNo() {
return orderNo;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.ORDER_NO
*
* @param orderNo the value for article_channel.ORDER_NO
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setOrderNo(Integer orderNo) {
this.orderNo = orderNo;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_channel.TOP_TIME
*
* @return the value of article_channel.TOP_TIME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public String getTopTime() {
return topTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_channel.TOP_TIME
*
* @param topTime the value for article_channel.TOP_TIME
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
public void setTopTime(String topTime) {
this.topTime = topTime;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,55 @@
package com.ruoyi.content.domain;
import java.io.Serializable;
public class ArticleDTO implements Serializable{
private static final long serialVersionUID = -4566641360099978631L;
private String publishId; //文章发布id
private String articleId; //文章id
private String articleName; //文章名称
private String listPicUrl; //文章列表显示图片
private String createDate; //文章发布日期
private String visitors; //文章浏览人数
public String getPublishId() {
return publishId;
}
public void setPublishId(String publishId) {
this.publishId = publishId;
}
public String getArticleId() {
return articleId;
}
public void setArticleId(String articleId) {
this.articleId = articleId;
}
public String getArticleName() {
return articleName;
}
public void setArticleName(String articleName) {
this.articleName = articleName;
}
public String getListPicUrl() {
return listPicUrl;
}
public void setListPicUrl(String listPicUrl) {
this.listPicUrl = listPicUrl;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getVisitors() {
return visitors;
}
public void setVisitors(String visitors) {
this.visitors = visitors;
}
}

View File

@ -0,0 +1,387 @@
package com.ruoyi.content.domain;
public class ArticleForwardTrack extends ArticleForwardTrackKey {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.FORWARD_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private Integer forwardId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.COMPANY_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.CLICK_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String clickId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.PUBLISH_USER_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String publishUserId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.VERSION_NUMBER
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String versionNumber;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.SHARE_STATE
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String shareState;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.CREATE_DATE
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.CREATE_TIME
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.CREATE_USER
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.UPDATE_USER
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.UPDATE_DATE
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.UPDATE_TIME
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String updateTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.FORWARD_ID
*
* @return the value of article_forward_track.FORWARD_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public Integer getForwardId() {
return forwardId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.FORWARD_ID
*
* @param forwardId the value for article_forward_track.FORWARD_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setForwardId(Integer forwardId) {
this.forwardId = forwardId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.COMPANY_ID
*
* @return the value of article_forward_track.COMPANY_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.COMPANY_ID
*
* @param companyId the value for article_forward_track.COMPANY_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.CLICK_ID
*
* @return the value of article_forward_track.CLICK_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getClickId() {
return clickId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.CLICK_ID
*
* @param clickId the value for article_forward_track.CLICK_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setClickId(String clickId) {
this.clickId = clickId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.PUBLISH_USER_ID
*
* @return the value of article_forward_track.PUBLISH_USER_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getPublishUserId() {
return publishUserId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.PUBLISH_USER_ID
*
* @param publishUserId the value for article_forward_track.PUBLISH_USER_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setPublishUserId(String publishUserId) {
this.publishUserId = publishUserId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.VERSION_NUMBER
*
* @return the value of article_forward_track.VERSION_NUMBER
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getVersionNumber() {
return versionNumber;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.VERSION_NUMBER
*
* @param versionNumber the value for article_forward_track.VERSION_NUMBER
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setVersionNumber(String versionNumber) {
this.versionNumber = versionNumber;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.SHARE_STATE
*
* @return the value of article_forward_track.SHARE_STATE
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getShareState() {
return shareState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.SHARE_STATE
*
* @param shareState the value for article_forward_track.SHARE_STATE
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setShareState(String shareState) {
this.shareState = shareState;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.CREATE_DATE
*
* @return the value of article_forward_track.CREATE_DATE
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.CREATE_DATE
*
* @param createDate the value for article_forward_track.CREATE_DATE
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.CREATE_TIME
*
* @return the value of article_forward_track.CREATE_TIME
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.CREATE_TIME
*
* @param createTime the value for article_forward_track.CREATE_TIME
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.CREATE_USER
*
* @return the value of article_forward_track.CREATE_USER
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.CREATE_USER
*
* @param createUser the value for article_forward_track.CREATE_USER
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.UPDATE_USER
*
* @return the value of article_forward_track.UPDATE_USER
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.UPDATE_USER
*
* @param updateUser the value for article_forward_track.UPDATE_USER
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.UPDATE_DATE
*
* @return the value of article_forward_track.UPDATE_DATE
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.UPDATE_DATE
*
* @param updateDate the value for article_forward_track.UPDATE_DATE
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.UPDATE_TIME
*
* @return the value of article_forward_track.UPDATE_TIME
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.UPDATE_TIME
*
* @param updateTime the value for article_forward_track.UPDATE_TIME
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
}

View File

@ -0,0 +1,99 @@
package com.ruoyi.content.domain;
public class ArticleForwardTrackKey {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.ARTICLE_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String articleId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.FORWARD_TIMESTAMP
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String forwardTimestamp;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_forward_track.USER_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
private String userId;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.ARTICLE_ID
*
* @return the value of article_forward_track.ARTICLE_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getArticleId() {
return articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.ARTICLE_ID
*
* @param articleId the value for article_forward_track.ARTICLE_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setArticleId(String articleId) {
this.articleId = articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.FORWARD_TIMESTAMP
*
* @return the value of article_forward_track.FORWARD_TIMESTAMP
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getForwardTimestamp() {
return forwardTimestamp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.FORWARD_TIMESTAMP
*
* @param forwardTimestamp the value for article_forward_track.FORWARD_TIMESTAMP
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setForwardTimestamp(String forwardTimestamp) {
this.forwardTimestamp = forwardTimestamp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_forward_track.USER_ID
*
* @return the value of article_forward_track.USER_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public String getUserId() {
return userId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_forward_track.USER_ID
*
* @param userId the value for article_forward_track.USER_ID
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
public void setUserId(String userId) {
this.userId = userId;
}
}

View File

@ -0,0 +1,739 @@
package com.ruoyi.content.domain;
public class ArticleInfo {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.ARTICLE_ID
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private Integer articleId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.ARTICLE_NAME
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String articleName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.PUSH_DATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String pushDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.ARTICLE_AUTHOR
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String articleAuthor;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.ARTICLE_EDIT_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String articleEditUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.ARTICLE_VIEW_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String articleViewUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.LIST_PIC_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String listPicUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.SPECIAL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String special;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.CHANNEL_ID
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String channelId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.COMPANY_ID
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.ORIGINAL_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String originalUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.SHARE_IMG_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String shareImgUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.SHARE_TITLE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String shareTitle;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.ARTICLE_STATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String articleState;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.SHARE_DES
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String shareDes;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.CREATE_DATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.CREATE_TIME
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.CREATE_USER
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.UPDATE_DATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.UPDATE_TIME
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String updateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.MODIFIED_EDIT_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String modifiedEditUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.MODIFIED_VIEW_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String modifiedViewUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_info.ARTICLE_CONTENT
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
private String articleContent;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.ARTICLE_ID
*
* @return the value of article_info.ARTICLE_ID
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public Integer getArticleId() {
return articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.ARTICLE_ID
*
* @param articleId the value for article_info.ARTICLE_ID
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setArticleId(Integer articleId) {
this.articleId = articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.ARTICLE_NAME
*
* @return the value of article_info.ARTICLE_NAME
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getArticleName() {
return articleName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.ARTICLE_NAME
*
* @param articleName the value for article_info.ARTICLE_NAME
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setArticleName(String articleName) {
this.articleName = articleName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.PUSH_DATE
*
* @return the value of article_info.PUSH_DATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getPushDate() {
return pushDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.PUSH_DATE
*
* @param pushDate the value for article_info.PUSH_DATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setPushDate(String pushDate) {
this.pushDate = pushDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.ARTICLE_AUTHOR
*
* @return the value of article_info.ARTICLE_AUTHOR
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getArticleAuthor() {
return articleAuthor;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.ARTICLE_AUTHOR
*
* @param articleAuthor the value for article_info.ARTICLE_AUTHOR
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setArticleAuthor(String articleAuthor) {
this.articleAuthor = articleAuthor;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.ARTICLE_EDIT_URL
*
* @return the value of article_info.ARTICLE_EDIT_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getArticleEditUrl() {
return articleEditUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.ARTICLE_EDIT_URL
*
* @param articleEditUrl the value for article_info.ARTICLE_EDIT_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setArticleEditUrl(String articleEditUrl) {
this.articleEditUrl = articleEditUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.ARTICLE_VIEW_URL
*
* @return the value of article_info.ARTICLE_VIEW_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getArticleViewUrl() {
return articleViewUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.ARTICLE_VIEW_URL
*
* @param articleViewUrl the value for article_info.ARTICLE_VIEW_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setArticleViewUrl(String articleViewUrl) {
this.articleViewUrl = articleViewUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.LIST_PIC_URL
*
* @return the value of article_info.LIST_PIC_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getListPicUrl() {
return listPicUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.LIST_PIC_URL
*
* @param listPicUrl the value for article_info.LIST_PIC_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setListPicUrl(String listPicUrl) {
this.listPicUrl = listPicUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.SPECIAL
*
* @return the value of article_info.SPECIAL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getSpecial() {
return special;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.SPECIAL
*
* @param special the value for article_info.SPECIAL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setSpecial(String special) {
this.special = special;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.CHANNEL_ID
*
* @return the value of article_info.CHANNEL_ID
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getChannelId() {
return channelId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.CHANNEL_ID
*
* @param channelId the value for article_info.CHANNEL_ID
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setChannelId(String channelId) {
this.channelId = channelId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.COMPANY_ID
*
* @return the value of article_info.COMPANY_ID
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.COMPANY_ID
*
* @param companyId the value for article_info.COMPANY_ID
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.ORIGINAL_URL
*
* @return the value of article_info.ORIGINAL_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getOriginalUrl() {
return originalUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.ORIGINAL_URL
*
* @param originalUrl the value for article_info.ORIGINAL_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setOriginalUrl(String originalUrl) {
this.originalUrl = originalUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.SHARE_IMG_URL
*
* @return the value of article_info.SHARE_IMG_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getShareImgUrl() {
return shareImgUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.SHARE_IMG_URL
*
* @param shareImgUrl the value for article_info.SHARE_IMG_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setShareImgUrl(String shareImgUrl) {
this.shareImgUrl = shareImgUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.SHARE_TITLE
*
* @return the value of article_info.SHARE_TITLE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getShareTitle() {
return shareTitle;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.SHARE_TITLE
*
* @param shareTitle the value for article_info.SHARE_TITLE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setShareTitle(String shareTitle) {
this.shareTitle = shareTitle;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.ARTICLE_STATE
*
* @return the value of article_info.ARTICLE_STATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getArticleState() {
return articleState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.ARTICLE_STATE
*
* @param articleState the value for article_info.ARTICLE_STATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setArticleState(String articleState) {
this.articleState = articleState;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.SHARE_DES
*
* @return the value of article_info.SHARE_DES
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getShareDes() {
return shareDes;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.SHARE_DES
*
* @param shareDes the value for article_info.SHARE_DES
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setShareDes(String shareDes) {
this.shareDes = shareDes;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.CREATE_DATE
*
* @return the value of article_info.CREATE_DATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.CREATE_DATE
*
* @param createDate the value for article_info.CREATE_DATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.CREATE_TIME
*
* @return the value of article_info.CREATE_TIME
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.CREATE_TIME
*
* @param createTime the value for article_info.CREATE_TIME
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.CREATE_USER
*
* @return the value of article_info.CREATE_USER
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.CREATE_USER
*
* @param createUser the value for article_info.CREATE_USER
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.UPDATE_DATE
*
* @return the value of article_info.UPDATE_DATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.UPDATE_DATE
*
* @param updateDate the value for article_info.UPDATE_DATE
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.UPDATE_TIME
*
* @return the value of article_info.UPDATE_TIME
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.UPDATE_TIME
*
* @param updateTime the value for article_info.UPDATE_TIME
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.MODIFIED_EDIT_URL
*
* @return the value of article_info.MODIFIED_EDIT_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getModifiedEditUrl() {
return modifiedEditUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.MODIFIED_EDIT_URL
*
* @param modifiedEditUrl the value for article_info.MODIFIED_EDIT_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setModifiedEditUrl(String modifiedEditUrl) {
this.modifiedEditUrl = modifiedEditUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.MODIFIED_VIEW_URL
*
* @return the value of article_info.MODIFIED_VIEW_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getModifiedViewUrl() {
return modifiedViewUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.MODIFIED_VIEW_URL
*
* @param modifiedViewUrl the value for article_info.MODIFIED_VIEW_URL
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setModifiedViewUrl(String modifiedViewUrl) {
this.modifiedViewUrl = modifiedViewUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_info.ARTICLE_CONTENT
*
* @return the value of article_info.ARTICLE_CONTENT
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public String getArticleContent() {
return articleContent;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_info.ARTICLE_CONTENT
*
* @param articleContent the value for article_info.ARTICLE_CONTENT
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
public void setArticleContent(String articleContent) {
this.articleContent = articleContent;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,323 @@
package com.ruoyi.content.domain;
public class ArticleLabel {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label.LABEL_ID
*
* @mbggenerated
*/
private Integer labelId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label.LABEL_NAME
*
* @mbggenerated
*/
private String labelName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label.COMPANY_NAME
*
* @mbggenerated
*/
private String companyName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label.CREATE_TIME
*
* @mbggenerated
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label.CREATE_DATE
*
* @mbggenerated
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label.UPDATE_TIME
*
* @mbggenerated
*/
private String updateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label.UPDATE_DATE
*
* @mbggenerated
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label.CREATE_USER
*
* @mbggenerated
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label.COMPANY_ID
*
* @mbggenerated
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label.BRANCH_ID
*
* @mbggenerated
*/
private String branchId;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label.LABEL_ID
*
* @return the value of article_label.LABEL_ID
*
* @mbggenerated
*/
public Integer getLabelId() {
return labelId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label.LABEL_ID
*
* @param labelId the value for article_label.LABEL_ID
*
* @mbggenerated
*/
public void setLabelId(Integer labelId) {
this.labelId = labelId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label.LABEL_NAME
*
* @return the value of article_label.LABEL_NAME
*
* @mbggenerated
*/
public String getLabelName() {
return labelName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label.LABEL_NAME
*
* @param labelName the value for article_label.LABEL_NAME
*
* @mbggenerated
*/
public void setLabelName(String labelName) {
this.labelName = labelName == null ? null : labelName.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label.COMPANY_NAME
*
* @return the value of article_label.COMPANY_NAME
*
* @mbggenerated
*/
public String getCompanyName() {
return companyName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label.COMPANY_NAME
*
* @param companyName the value for article_label.COMPANY_NAME
*
* @mbggenerated
*/
public void setCompanyName(String companyName) {
this.companyName = companyName == null ? null : companyName.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label.CREATE_TIME
*
* @return the value of article_label.CREATE_TIME
*
* @mbggenerated
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label.CREATE_TIME
*
* @param createTime the value for article_label.CREATE_TIME
*
* @mbggenerated
*/
public void setCreateTime(String createTime) {
this.createTime = createTime == null ? null : createTime.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label.CREATE_DATE
*
* @return the value of article_label.CREATE_DATE
*
* @mbggenerated
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label.CREATE_DATE
*
* @param createDate the value for article_label.CREATE_DATE
*
* @mbggenerated
*/
public void setCreateDate(String createDate) {
this.createDate = createDate == null ? null : createDate.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label.UPDATE_TIME
*
* @return the value of article_label.UPDATE_TIME
*
* @mbggenerated
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label.UPDATE_TIME
*
* @param updateTime the value for article_label.UPDATE_TIME
*
* @mbggenerated
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime == null ? null : updateTime.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label.UPDATE_DATE
*
* @return the value of article_label.UPDATE_DATE
*
* @mbggenerated
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label.UPDATE_DATE
*
* @param updateDate the value for article_label.UPDATE_DATE
*
* @mbggenerated
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate == null ? null : updateDate.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label.CREATE_USER
*
* @return the value of article_label.CREATE_USER
*
* @mbggenerated
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label.CREATE_USER
*
* @param createUser the value for article_label.CREATE_USER
*
* @mbggenerated
*/
public void setCreateUser(String createUser) {
this.createUser = createUser == null ? null : createUser.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label.COMPANY_ID
*
* @return the value of article_label.COMPANY_ID
*
* @mbggenerated
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label.COMPANY_ID
*
* @param companyId the value for article_label.COMPANY_ID
*
* @mbggenerated
*/
public void setCompanyId(String companyId) {
this.companyId = companyId == null ? null : companyId.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label.BRANCH_ID
*
* @return the value of article_label.BRANCH_ID
*
* @mbggenerated
*/
public String getBranchId() {
return branchId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label.BRANCH_ID
*
* @param branchId the value for article_label.BRANCH_ID
*
* @mbggenerated
*/
public void setBranchId(String branchId) {
this.branchId = branchId == null ? null : branchId.trim();
}
}

View File

@ -0,0 +1,992 @@
package com.ruoyi.content.domain;
import java.util.ArrayList;
import java.util.List;
public class ArticleLabelExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_label
*
* @mbggenerated
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_label
*
* @mbggenerated
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_label
*
* @mbggenerated
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
public ArticleLabelExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_label
*
* @mbggenerated
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andLabelIdIsNull() {
addCriterion("LABEL_ID is null");
return (Criteria) this;
}
public Criteria andLabelIdIsNotNull() {
addCriterion("LABEL_ID is not null");
return (Criteria) this;
}
public Criteria andLabelIdEqualTo(Integer value) {
addCriterion("LABEL_ID =", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdNotEqualTo(Integer value) {
addCriterion("LABEL_ID <>", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdGreaterThan(Integer value) {
addCriterion("LABEL_ID >", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdGreaterThanOrEqualTo(Integer value) {
addCriterion("LABEL_ID >=", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdLessThan(Integer value) {
addCriterion("LABEL_ID <", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdLessThanOrEqualTo(Integer value) {
addCriterion("LABEL_ID <=", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdIn(List<Integer> values) {
addCriterion("LABEL_ID in", values, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdNotIn(List<Integer> values) {
addCriterion("LABEL_ID not in", values, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdBetween(Integer value1, Integer value2) {
addCriterion("LABEL_ID between", value1, value2, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdNotBetween(Integer value1, Integer value2) {
addCriterion("LABEL_ID not between", value1, value2, "labelId");
return (Criteria) this;
}
public Criteria andLabelNameIsNull() {
addCriterion("LABEL_NAME is null");
return (Criteria) this;
}
public Criteria andLabelNameIsNotNull() {
addCriterion("LABEL_NAME is not null");
return (Criteria) this;
}
public Criteria andLabelNameEqualTo(String value) {
addCriterion("LABEL_NAME =", value, "labelName");
return (Criteria) this;
}
public Criteria andLabelNameNotEqualTo(String value) {
addCriterion("LABEL_NAME <>", value, "labelName");
return (Criteria) this;
}
public Criteria andLabelNameGreaterThan(String value) {
addCriterion("LABEL_NAME >", value, "labelName");
return (Criteria) this;
}
public Criteria andLabelNameGreaterThanOrEqualTo(String value) {
addCriterion("LABEL_NAME >=", value, "labelName");
return (Criteria) this;
}
public Criteria andLabelNameLessThan(String value) {
addCriterion("LABEL_NAME <", value, "labelName");
return (Criteria) this;
}
public Criteria andLabelNameLessThanOrEqualTo(String value) {
addCriterion("LABEL_NAME <=", value, "labelName");
return (Criteria) this;
}
public Criteria andLabelNameLike(String value) {
addCriterion("LABEL_NAME like", value, "labelName");
return (Criteria) this;
}
public Criteria andLabelNameNotLike(String value) {
addCriterion("LABEL_NAME not like", value, "labelName");
return (Criteria) this;
}
public Criteria andLabelNameIn(List<String> values) {
addCriterion("LABEL_NAME in", values, "labelName");
return (Criteria) this;
}
public Criteria andLabelNameNotIn(List<String> values) {
addCriterion("LABEL_NAME not in", values, "labelName");
return (Criteria) this;
}
public Criteria andLabelNameBetween(String value1, String value2) {
addCriterion("LABEL_NAME between", value1, value2, "labelName");
return (Criteria) this;
}
public Criteria andLabelNameNotBetween(String value1, String value2) {
addCriterion("LABEL_NAME not between", value1, value2, "labelName");
return (Criteria) this;
}
public Criteria andCompanyNameIsNull() {
addCriterion("COMPANY_NAME is null");
return (Criteria) this;
}
public Criteria andCompanyNameIsNotNull() {
addCriterion("COMPANY_NAME is not null");
return (Criteria) this;
}
public Criteria andCompanyNameEqualTo(String value) {
addCriterion("COMPANY_NAME =", value, "companyName");
return (Criteria) this;
}
public Criteria andCompanyNameNotEqualTo(String value) {
addCriterion("COMPANY_NAME <>", value, "companyName");
return (Criteria) this;
}
public Criteria andCompanyNameGreaterThan(String value) {
addCriterion("COMPANY_NAME >", value, "companyName");
return (Criteria) this;
}
public Criteria andCompanyNameGreaterThanOrEqualTo(String value) {
addCriterion("COMPANY_NAME >=", value, "companyName");
return (Criteria) this;
}
public Criteria andCompanyNameLessThan(String value) {
addCriterion("COMPANY_NAME <", value, "companyName");
return (Criteria) this;
}
public Criteria andCompanyNameLessThanOrEqualTo(String value) {
addCriterion("COMPANY_NAME <=", value, "companyName");
return (Criteria) this;
}
public Criteria andCompanyNameLike(String value) {
addCriterion("COMPANY_NAME like", value, "companyName");
return (Criteria) this;
}
public Criteria andCompanyNameNotLike(String value) {
addCriterion("COMPANY_NAME not like", value, "companyName");
return (Criteria) this;
}
public Criteria andCompanyNameIn(List<String> values) {
addCriterion("COMPANY_NAME in", values, "companyName");
return (Criteria) this;
}
public Criteria andCompanyNameNotIn(List<String> values) {
addCriterion("COMPANY_NAME not in", values, "companyName");
return (Criteria) this;
}
public Criteria andCompanyNameBetween(String value1, String value2) {
addCriterion("COMPANY_NAME between", value1, value2, "companyName");
return (Criteria) this;
}
public Criteria andCompanyNameNotBetween(String value1, String value2) {
addCriterion("COMPANY_NAME not between", value1, value2, "companyName");
return (Criteria) this;
}
public Criteria andCreateTimeIsNull() {
addCriterion("CREATE_TIME is null");
return (Criteria) this;
}
public Criteria andCreateTimeIsNotNull() {
addCriterion("CREATE_TIME is not null");
return (Criteria) this;
}
public Criteria andCreateTimeEqualTo(String value) {
addCriterion("CREATE_TIME =", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotEqualTo(String value) {
addCriterion("CREATE_TIME <>", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThan(String value) {
addCriterion("CREATE_TIME >", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_TIME >=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThan(String value) {
addCriterion("CREATE_TIME <", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThanOrEqualTo(String value) {
addCriterion("CREATE_TIME <=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLike(String value) {
addCriterion("CREATE_TIME like", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotLike(String value) {
addCriterion("CREATE_TIME not like", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeIn(List<String> values) {
addCriterion("CREATE_TIME in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotIn(List<String> values) {
addCriterion("CREATE_TIME not in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeBetween(String value1, String value2) {
addCriterion("CREATE_TIME between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotBetween(String value1, String value2) {
addCriterion("CREATE_TIME not between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateDateIsNull() {
addCriterion("CREATE_DATE is null");
return (Criteria) this;
}
public Criteria andCreateDateIsNotNull() {
addCriterion("CREATE_DATE is not null");
return (Criteria) this;
}
public Criteria andCreateDateEqualTo(String value) {
addCriterion("CREATE_DATE =", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotEqualTo(String value) {
addCriterion("CREATE_DATE <>", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateGreaterThan(String value) {
addCriterion("CREATE_DATE >", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_DATE >=", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLessThan(String value) {
addCriterion("CREATE_DATE <", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLessThanOrEqualTo(String value) {
addCriterion("CREATE_DATE <=", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLike(String value) {
addCriterion("CREATE_DATE like", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotLike(String value) {
addCriterion("CREATE_DATE not like", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateIn(List<String> values) {
addCriterion("CREATE_DATE in", values, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotIn(List<String> values) {
addCriterion("CREATE_DATE not in", values, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateBetween(String value1, String value2) {
addCriterion("CREATE_DATE between", value1, value2, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotBetween(String value1, String value2) {
addCriterion("CREATE_DATE not between", value1, value2, "createDate");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNull() {
addCriterion("UPDATE_TIME is null");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNotNull() {
addCriterion("UPDATE_TIME is not null");
return (Criteria) this;
}
public Criteria andUpdateTimeEqualTo(String value) {
addCriterion("UPDATE_TIME =", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotEqualTo(String value) {
addCriterion("UPDATE_TIME <>", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThan(String value) {
addCriterion("UPDATE_TIME >", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_TIME >=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThan(String value) {
addCriterion("UPDATE_TIME <", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThanOrEqualTo(String value) {
addCriterion("UPDATE_TIME <=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLike(String value) {
addCriterion("UPDATE_TIME like", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotLike(String value) {
addCriterion("UPDATE_TIME not like", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeIn(List<String> values) {
addCriterion("UPDATE_TIME in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotIn(List<String> values) {
addCriterion("UPDATE_TIME not in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeBetween(String value1, String value2) {
addCriterion("UPDATE_TIME between", value1, value2, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotBetween(String value1, String value2) {
addCriterion("UPDATE_TIME not between", value1, value2, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateDateIsNull() {
addCriterion("UPDATE_DATE is null");
return (Criteria) this;
}
public Criteria andUpdateDateIsNotNull() {
addCriterion("UPDATE_DATE is not null");
return (Criteria) this;
}
public Criteria andUpdateDateEqualTo(String value) {
addCriterion("UPDATE_DATE =", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotEqualTo(String value) {
addCriterion("UPDATE_DATE <>", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThan(String value) {
addCriterion("UPDATE_DATE >", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_DATE >=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThan(String value) {
addCriterion("UPDATE_DATE <", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThanOrEqualTo(String value) {
addCriterion("UPDATE_DATE <=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLike(String value) {
addCriterion("UPDATE_DATE like", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotLike(String value) {
addCriterion("UPDATE_DATE not like", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateIn(List<String> values) {
addCriterion("UPDATE_DATE in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotIn(List<String> values) {
addCriterion("UPDATE_DATE not in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateBetween(String value1, String value2) {
addCriterion("UPDATE_DATE between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotBetween(String value1, String value2) {
addCriterion("UPDATE_DATE not between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andCreateUserIsNull() {
addCriterion("CREATE_USER is null");
return (Criteria) this;
}
public Criteria andCreateUserIsNotNull() {
addCriterion("CREATE_USER is not null");
return (Criteria) this;
}
public Criteria andCreateUserEqualTo(String value) {
addCriterion("CREATE_USER =", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotEqualTo(String value) {
addCriterion("CREATE_USER <>", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserGreaterThan(String value) {
addCriterion("CREATE_USER >", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_USER >=", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLessThan(String value) {
addCriterion("CREATE_USER <", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLessThanOrEqualTo(String value) {
addCriterion("CREATE_USER <=", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLike(String value) {
addCriterion("CREATE_USER like", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotLike(String value) {
addCriterion("CREATE_USER not like", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserIn(List<String> values) {
addCriterion("CREATE_USER in", values, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotIn(List<String> values) {
addCriterion("CREATE_USER not in", values, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserBetween(String value1, String value2) {
addCriterion("CREATE_USER between", value1, value2, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotBetween(String value1, String value2) {
addCriterion("CREATE_USER not between", value1, value2, "createUser");
return (Criteria) this;
}
public Criteria andCompanyIdIsNull() {
addCriterion("COMPANY_ID is null");
return (Criteria) this;
}
public Criteria andCompanyIdIsNotNull() {
addCriterion("COMPANY_ID is not null");
return (Criteria) this;
}
public Criteria andCompanyIdEqualTo(String value) {
addCriterion("COMPANY_ID =", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdNotEqualTo(String value) {
addCriterion("COMPANY_ID <>", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdGreaterThan(String value) {
addCriterion("COMPANY_ID >", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdGreaterThanOrEqualTo(String value) {
addCriterion("COMPANY_ID >=", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdLessThan(String value) {
addCriterion("COMPANY_ID <", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdLessThanOrEqualTo(String value) {
addCriterion("COMPANY_ID <=", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdLike(String value) {
addCriterion("COMPANY_ID like", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdNotLike(String value) {
addCriterion("COMPANY_ID not like", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdIn(List<String> values) {
addCriterion("COMPANY_ID in", values, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdNotIn(List<String> values) {
addCriterion("COMPANY_ID not in", values, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdBetween(String value1, String value2) {
addCriterion("COMPANY_ID between", value1, value2, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdNotBetween(String value1, String value2) {
addCriterion("COMPANY_ID not between", value1, value2, "companyId");
return (Criteria) this;
}
public Criteria andBranchIdIsNull() {
addCriterion("BRANCH_ID is null");
return (Criteria) this;
}
public Criteria andBranchIdIsNotNull() {
addCriterion("BRANCH_ID is not null");
return (Criteria) this;
}
public Criteria andBranchIdEqualTo(String value) {
addCriterion("BRANCH_ID =", value, "branchId");
return (Criteria) this;
}
public Criteria andBranchIdNotEqualTo(String value) {
addCriterion("BRANCH_ID <>", value, "branchId");
return (Criteria) this;
}
public Criteria andBranchIdGreaterThan(String value) {
addCriterion("BRANCH_ID >", value, "branchId");
return (Criteria) this;
}
public Criteria andBranchIdGreaterThanOrEqualTo(String value) {
addCriterion("BRANCH_ID >=", value, "branchId");
return (Criteria) this;
}
public Criteria andBranchIdLessThan(String value) {
addCriterion("BRANCH_ID <", value, "branchId");
return (Criteria) this;
}
public Criteria andBranchIdLessThanOrEqualTo(String value) {
addCriterion("BRANCH_ID <=", value, "branchId");
return (Criteria) this;
}
public Criteria andBranchIdLike(String value) {
addCriterion("BRANCH_ID like", value, "branchId");
return (Criteria) this;
}
public Criteria andBranchIdNotLike(String value) {
addCriterion("BRANCH_ID not like", value, "branchId");
return (Criteria) this;
}
public Criteria andBranchIdIn(List<String> values) {
addCriterion("BRANCH_ID in", values, "branchId");
return (Criteria) this;
}
public Criteria andBranchIdNotIn(List<String> values) {
addCriterion("BRANCH_ID not in", values, "branchId");
return (Criteria) this;
}
public Criteria andBranchIdBetween(String value1, String value2) {
addCriterion("BRANCH_ID between", value1, value2, "branchId");
return (Criteria) this;
}
public Criteria andBranchIdNotBetween(String value1, String value2) {
addCriterion("BRANCH_ID not between", value1, value2, "branchId");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_label
*
* @mbggenerated do_not_delete_during_merge
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_label
*
* @mbggenerated
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}

View File

@ -0,0 +1,31 @@
package com.ruoyi.content.domain;
/**
* 文章与标签关系dto
* @author Administrator
*
*/
public class ArticleLabelRelDTO {
private int articleId; // 文章id
private int labelId; //标签id
private String labelName; //标签名称
public int getArticleId() {
return articleId;
}
public void setArticleId(int articleId) {
this.articleId = articleId;
}
public int getLabelId() {
return labelId;
}
public void setLabelId(int labelId) {
this.labelId = labelId;
}
public String getLabelName() {
return labelName;
}
public void setLabelName(String labelName) {
this.labelName = labelName;
}
}

View File

@ -0,0 +1,99 @@
package com.ruoyi.content.domain;
public class ArticleLabelRelationship {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label_relationship.ID
*
* @mbggenerated
*/
private Integer id;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label_relationship.ARTICLE_ID
*
* @mbggenerated
*/
private Integer articleId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_label_relationship.LABEL_ID
*
* @mbggenerated
*/
private Integer labelId;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label_relationship.ID
*
* @return the value of article_label_relationship.ID
*
* @mbggenerated
*/
public Integer getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label_relationship.ID
*
* @param id the value for article_label_relationship.ID
*
* @mbggenerated
*/
public void setId(Integer id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label_relationship.ARTICLE_ID
*
* @return the value of article_label_relationship.ARTICLE_ID
*
* @mbggenerated
*/
public Integer getArticleId() {
return articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label_relationship.ARTICLE_ID
*
* @param articleId the value for article_label_relationship.ARTICLE_ID
*
* @mbggenerated
*/
public void setArticleId(Integer articleId) {
this.articleId = articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_label_relationship.LABEL_ID
*
* @return the value of article_label_relationship.LABEL_ID
*
* @mbggenerated
*/
public Integer getLabelId() {
return labelId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_label_relationship.LABEL_ID
*
* @param labelId the value for article_label_relationship.LABEL_ID
*
* @mbggenerated
*/
public void setLabelId(Integer labelId) {
this.labelId = labelId;
}
}

View File

@ -0,0 +1,482 @@
package com.ruoyi.content.domain;
import java.util.ArrayList;
import java.util.List;
public class ArticleLabelRelationshipExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
public ArticleLabelRelationshipExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIdIsNull() {
addCriterion("ID is null");
return (Criteria) this;
}
public Criteria andIdIsNotNull() {
addCriterion("ID is not null");
return (Criteria) this;
}
public Criteria andIdEqualTo(Integer value) {
addCriterion("ID =", value, "id");
return (Criteria) this;
}
public Criteria andIdNotEqualTo(Integer value) {
addCriterion("ID <>", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThan(Integer value) {
addCriterion("ID >", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThanOrEqualTo(Integer value) {
addCriterion("ID >=", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThan(Integer value) {
addCriterion("ID <", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThanOrEqualTo(Integer value) {
addCriterion("ID <=", value, "id");
return (Criteria) this;
}
public Criteria andIdIn(List<Integer> values) {
addCriterion("ID in", values, "id");
return (Criteria) this;
}
public Criteria andIdNotIn(List<Integer> values) {
addCriterion("ID not in", values, "id");
return (Criteria) this;
}
public Criteria andIdBetween(Integer value1, Integer value2) {
addCriterion("ID between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andIdNotBetween(Integer value1, Integer value2) {
addCriterion("ID not between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andArticleIdIsNull() {
addCriterion("ARTICLE_ID is null");
return (Criteria) this;
}
public Criteria andArticleIdIsNotNull() {
addCriterion("ARTICLE_ID is not null");
return (Criteria) this;
}
public Criteria andArticleIdEqualTo(Integer value) {
addCriterion("ARTICLE_ID =", value, "articleId");
return (Criteria) this;
}
public Criteria andArticleIdNotEqualTo(Integer value) {
addCriterion("ARTICLE_ID <>", value, "articleId");
return (Criteria) this;
}
public Criteria andArticleIdGreaterThan(Integer value) {
addCriterion("ARTICLE_ID >", value, "articleId");
return (Criteria) this;
}
public Criteria andArticleIdGreaterThanOrEqualTo(Integer value) {
addCriterion("ARTICLE_ID >=", value, "articleId");
return (Criteria) this;
}
public Criteria andArticleIdLessThan(Integer value) {
addCriterion("ARTICLE_ID <", value, "articleId");
return (Criteria) this;
}
public Criteria andArticleIdLessThanOrEqualTo(Integer value) {
addCriterion("ARTICLE_ID <=", value, "articleId");
return (Criteria) this;
}
public Criteria andArticleIdIn(List<Integer> values) {
addCriterion("ARTICLE_ID in", values, "articleId");
return (Criteria) this;
}
public Criteria andArticleIdNotIn(List<Integer> values) {
addCriterion("ARTICLE_ID not in", values, "articleId");
return (Criteria) this;
}
public Criteria andArticleIdBetween(Integer value1, Integer value2) {
addCriterion("ARTICLE_ID between", value1, value2, "articleId");
return (Criteria) this;
}
public Criteria andArticleIdNotBetween(Integer value1, Integer value2) {
addCriterion("ARTICLE_ID not between", value1, value2, "articleId");
return (Criteria) this;
}
public Criteria andLabelIdIsNull() {
addCriterion("LABEL_ID is null");
return (Criteria) this;
}
public Criteria andLabelIdIsNotNull() {
addCriterion("LABEL_ID is not null");
return (Criteria) this;
}
public Criteria andLabelIdEqualTo(Integer value) {
addCriterion("LABEL_ID =", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdNotEqualTo(Integer value) {
addCriterion("LABEL_ID <>", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdGreaterThan(Integer value) {
addCriterion("LABEL_ID >", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdGreaterThanOrEqualTo(Integer value) {
addCriterion("LABEL_ID >=", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdLessThan(Integer value) {
addCriterion("LABEL_ID <", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdLessThanOrEqualTo(Integer value) {
addCriterion("LABEL_ID <=", value, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdIn(List<Integer> values) {
addCriterion("LABEL_ID in", values, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdNotIn(List<Integer> values) {
addCriterion("LABEL_ID not in", values, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdBetween(Integer value1, Integer value2) {
addCriterion("LABEL_ID between", value1, value2, "labelId");
return (Criteria) this;
}
public Criteria andLabelIdNotBetween(Integer value1, Integer value2) {
addCriterion("LABEL_ID not between", value1, value2, "labelId");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_label_relationship
*
* @mbggenerated do_not_delete_during_merge
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}

View File

@ -0,0 +1,227 @@
package com.ruoyi.content.domain;
public class ArticlePersonalConfig {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_personal_config.ID
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
private Integer id;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_personal_config.PUBLISH_ID
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
private String publishId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_personal_config.CONFIG_ARTICLE
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
private String configArticle;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_personal_config.CONFIG_PRODUCT
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
private String configProduct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_personal_config.CONFIG_CARD
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
private String configCard;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_personal_config.CONFIG_RECRUIT
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
private String configRecruit;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_personal_config.SHOW_AD
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
private String showAd;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_personal_config.ID
*
* @return the value of article_personal_config.ID
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public Integer getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_personal_config.ID
*
* @param id the value for article_personal_config.ID
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public void setId(Integer id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_personal_config.PUBLISH_ID
*
* @return the value of article_personal_config.PUBLISH_ID
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public String getPublishId() {
return publishId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_personal_config.PUBLISH_ID
*
* @param publishId the value for article_personal_config.PUBLISH_ID
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public void setPublishId(String publishId) {
this.publishId = publishId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_personal_config.CONFIG_ARTICLE
*
* @return the value of article_personal_config.CONFIG_ARTICLE
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public String getConfigArticle() {
return configArticle;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_personal_config.CONFIG_ARTICLE
*
* @param configArticle the value for article_personal_config.CONFIG_ARTICLE
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public void setConfigArticle(String configArticle) {
this.configArticle = configArticle;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_personal_config.CONFIG_PRODUCT
*
* @return the value of article_personal_config.CONFIG_PRODUCT
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public String getConfigProduct() {
return configProduct;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_personal_config.CONFIG_PRODUCT
*
* @param configProduct the value for article_personal_config.CONFIG_PRODUCT
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public void setConfigProduct(String configProduct) {
this.configProduct = configProduct;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_personal_config.CONFIG_CARD
*
* @return the value of article_personal_config.CONFIG_CARD
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public String getConfigCard() {
return configCard;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_personal_config.CONFIG_CARD
*
* @param configCard the value for article_personal_config.CONFIG_CARD
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public void setConfigCard(String configCard) {
this.configCard = configCard;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_personal_config.CONFIG_RECRUIT
*
* @return the value of article_personal_config.CONFIG_RECRUIT
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public String getConfigRecruit() {
return configRecruit;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_personal_config.CONFIG_RECRUIT
*
* @param configRecruit the value for article_personal_config.CONFIG_RECRUIT
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public void setConfigRecruit(String configRecruit) {
this.configRecruit = configRecruit;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_personal_config.SHOW_AD
*
* @return the value of article_personal_config.SHOW_AD
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public String getShowAd() {
return showAd;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_personal_config.SHOW_AD
*
* @param showAd the value for article_personal_config.SHOW_AD
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public void setShowAd(String showAd) {
this.showAd = showAd;
}
}

View File

@ -0,0 +1,782 @@
package com.ruoyi.content.domain;
import java.util.ArrayList;
import java.util.List;
public class ArticlePersonalConfigExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public ArticlePersonalConfigExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIdIsNull() {
addCriterion("ID is null");
return (Criteria) this;
}
public Criteria andIdIsNotNull() {
addCriterion("ID is not null");
return (Criteria) this;
}
public Criteria andIdEqualTo(Integer value) {
addCriterion("ID =", value, "id");
return (Criteria) this;
}
public Criteria andIdNotEqualTo(Integer value) {
addCriterion("ID <>", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThan(Integer value) {
addCriterion("ID >", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThanOrEqualTo(Integer value) {
addCriterion("ID >=", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThan(Integer value) {
addCriterion("ID <", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThanOrEqualTo(Integer value) {
addCriterion("ID <=", value, "id");
return (Criteria) this;
}
public Criteria andIdIn(List<Integer> values) {
addCriterion("ID in", values, "id");
return (Criteria) this;
}
public Criteria andIdNotIn(List<Integer> values) {
addCriterion("ID not in", values, "id");
return (Criteria) this;
}
public Criteria andIdBetween(Integer value1, Integer value2) {
addCriterion("ID between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andIdNotBetween(Integer value1, Integer value2) {
addCriterion("ID not between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andPublishIdIsNull() {
addCriterion("PUBLISH_ID is null");
return (Criteria) this;
}
public Criteria andPublishIdIsNotNull() {
addCriterion("PUBLISH_ID is not null");
return (Criteria) this;
}
public Criteria andPublishIdEqualTo(String value) {
addCriterion("PUBLISH_ID =", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdNotEqualTo(String value) {
addCriterion("PUBLISH_ID <>", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdGreaterThan(String value) {
addCriterion("PUBLISH_ID >", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdGreaterThanOrEqualTo(String value) {
addCriterion("PUBLISH_ID >=", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdLessThan(String value) {
addCriterion("PUBLISH_ID <", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdLessThanOrEqualTo(String value) {
addCriterion("PUBLISH_ID <=", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdLike(String value) {
addCriterion("PUBLISH_ID like", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdNotLike(String value) {
addCriterion("PUBLISH_ID not like", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdIn(List<String> values) {
addCriterion("PUBLISH_ID in", values, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdNotIn(List<String> values) {
addCriterion("PUBLISH_ID not in", values, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdBetween(String value1, String value2) {
addCriterion("PUBLISH_ID between", value1, value2, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdNotBetween(String value1, String value2) {
addCriterion("PUBLISH_ID not between", value1, value2, "publishId");
return (Criteria) this;
}
public Criteria andConfigArticleIsNull() {
addCriterion("CONFIG_ARTICLE is null");
return (Criteria) this;
}
public Criteria andConfigArticleIsNotNull() {
addCriterion("CONFIG_ARTICLE is not null");
return (Criteria) this;
}
public Criteria andConfigArticleEqualTo(String value) {
addCriterion("CONFIG_ARTICLE =", value, "configArticle");
return (Criteria) this;
}
public Criteria andConfigArticleNotEqualTo(String value) {
addCriterion("CONFIG_ARTICLE <>", value, "configArticle");
return (Criteria) this;
}
public Criteria andConfigArticleGreaterThan(String value) {
addCriterion("CONFIG_ARTICLE >", value, "configArticle");
return (Criteria) this;
}
public Criteria andConfigArticleGreaterThanOrEqualTo(String value) {
addCriterion("CONFIG_ARTICLE >=", value, "configArticle");
return (Criteria) this;
}
public Criteria andConfigArticleLessThan(String value) {
addCriterion("CONFIG_ARTICLE <", value, "configArticle");
return (Criteria) this;
}
public Criteria andConfigArticleLessThanOrEqualTo(String value) {
addCriterion("CONFIG_ARTICLE <=", value, "configArticle");
return (Criteria) this;
}
public Criteria andConfigArticleLike(String value) {
addCriterion("CONFIG_ARTICLE like", value, "configArticle");
return (Criteria) this;
}
public Criteria andConfigArticleNotLike(String value) {
addCriterion("CONFIG_ARTICLE not like", value, "configArticle");
return (Criteria) this;
}
public Criteria andConfigArticleIn(List<String> values) {
addCriterion("CONFIG_ARTICLE in", values, "configArticle");
return (Criteria) this;
}
public Criteria andConfigArticleNotIn(List<String> values) {
addCriterion("CONFIG_ARTICLE not in", values, "configArticle");
return (Criteria) this;
}
public Criteria andConfigArticleBetween(String value1, String value2) {
addCriterion("CONFIG_ARTICLE between", value1, value2, "configArticle");
return (Criteria) this;
}
public Criteria andConfigArticleNotBetween(String value1, String value2) {
addCriterion("CONFIG_ARTICLE not between", value1, value2, "configArticle");
return (Criteria) this;
}
public Criteria andConfigProductIsNull() {
addCriterion("CONFIG_PRODUCT is null");
return (Criteria) this;
}
public Criteria andConfigProductIsNotNull() {
addCriterion("CONFIG_PRODUCT is not null");
return (Criteria) this;
}
public Criteria andConfigProductEqualTo(String value) {
addCriterion("CONFIG_PRODUCT =", value, "configProduct");
return (Criteria) this;
}
public Criteria andConfigProductNotEqualTo(String value) {
addCriterion("CONFIG_PRODUCT <>", value, "configProduct");
return (Criteria) this;
}
public Criteria andConfigProductGreaterThan(String value) {
addCriterion("CONFIG_PRODUCT >", value, "configProduct");
return (Criteria) this;
}
public Criteria andConfigProductGreaterThanOrEqualTo(String value) {
addCriterion("CONFIG_PRODUCT >=", value, "configProduct");
return (Criteria) this;
}
public Criteria andConfigProductLessThan(String value) {
addCriterion("CONFIG_PRODUCT <", value, "configProduct");
return (Criteria) this;
}
public Criteria andConfigProductLessThanOrEqualTo(String value) {
addCriterion("CONFIG_PRODUCT <=", value, "configProduct");
return (Criteria) this;
}
public Criteria andConfigProductLike(String value) {
addCriterion("CONFIG_PRODUCT like", value, "configProduct");
return (Criteria) this;
}
public Criteria andConfigProductNotLike(String value) {
addCriterion("CONFIG_PRODUCT not like", value, "configProduct");
return (Criteria) this;
}
public Criteria andConfigProductIn(List<String> values) {
addCriterion("CONFIG_PRODUCT in", values, "configProduct");
return (Criteria) this;
}
public Criteria andConfigProductNotIn(List<String> values) {
addCriterion("CONFIG_PRODUCT not in", values, "configProduct");
return (Criteria) this;
}
public Criteria andConfigProductBetween(String value1, String value2) {
addCriterion("CONFIG_PRODUCT between", value1, value2, "configProduct");
return (Criteria) this;
}
public Criteria andConfigProductNotBetween(String value1, String value2) {
addCriterion("CONFIG_PRODUCT not between", value1, value2, "configProduct");
return (Criteria) this;
}
public Criteria andConfigCardIsNull() {
addCriterion("CONFIG_CARD is null");
return (Criteria) this;
}
public Criteria andConfigCardIsNotNull() {
addCriterion("CONFIG_CARD is not null");
return (Criteria) this;
}
public Criteria andConfigCardEqualTo(String value) {
addCriterion("CONFIG_CARD =", value, "configCard");
return (Criteria) this;
}
public Criteria andConfigCardNotEqualTo(String value) {
addCriterion("CONFIG_CARD <>", value, "configCard");
return (Criteria) this;
}
public Criteria andConfigCardGreaterThan(String value) {
addCriterion("CONFIG_CARD >", value, "configCard");
return (Criteria) this;
}
public Criteria andConfigCardGreaterThanOrEqualTo(String value) {
addCriterion("CONFIG_CARD >=", value, "configCard");
return (Criteria) this;
}
public Criteria andConfigCardLessThan(String value) {
addCriterion("CONFIG_CARD <", value, "configCard");
return (Criteria) this;
}
public Criteria andConfigCardLessThanOrEqualTo(String value) {
addCriterion("CONFIG_CARD <=", value, "configCard");
return (Criteria) this;
}
public Criteria andConfigCardLike(String value) {
addCriterion("CONFIG_CARD like", value, "configCard");
return (Criteria) this;
}
public Criteria andConfigCardNotLike(String value) {
addCriterion("CONFIG_CARD not like", value, "configCard");
return (Criteria) this;
}
public Criteria andConfigCardIn(List<String> values) {
addCriterion("CONFIG_CARD in", values, "configCard");
return (Criteria) this;
}
public Criteria andConfigCardNotIn(List<String> values) {
addCriterion("CONFIG_CARD not in", values, "configCard");
return (Criteria) this;
}
public Criteria andConfigCardBetween(String value1, String value2) {
addCriterion("CONFIG_CARD between", value1, value2, "configCard");
return (Criteria) this;
}
public Criteria andConfigCardNotBetween(String value1, String value2) {
addCriterion("CONFIG_CARD not between", value1, value2, "configCard");
return (Criteria) this;
}
public Criteria andConfigRecruitIsNull() {
addCriterion("CONFIG_RECRUIT is null");
return (Criteria) this;
}
public Criteria andConfigRecruitIsNotNull() {
addCriterion("CONFIG_RECRUIT is not null");
return (Criteria) this;
}
public Criteria andConfigRecruitEqualTo(String value) {
addCriterion("CONFIG_RECRUIT =", value, "configRecruit");
return (Criteria) this;
}
public Criteria andConfigRecruitNotEqualTo(String value) {
addCriterion("CONFIG_RECRUIT <>", value, "configRecruit");
return (Criteria) this;
}
public Criteria andConfigRecruitGreaterThan(String value) {
addCriterion("CONFIG_RECRUIT >", value, "configRecruit");
return (Criteria) this;
}
public Criteria andConfigRecruitGreaterThanOrEqualTo(String value) {
addCriterion("CONFIG_RECRUIT >=", value, "configRecruit");
return (Criteria) this;
}
public Criteria andConfigRecruitLessThan(String value) {
addCriterion("CONFIG_RECRUIT <", value, "configRecruit");
return (Criteria) this;
}
public Criteria andConfigRecruitLessThanOrEqualTo(String value) {
addCriterion("CONFIG_RECRUIT <=", value, "configRecruit");
return (Criteria) this;
}
public Criteria andConfigRecruitLike(String value) {
addCriterion("CONFIG_RECRUIT like", value, "configRecruit");
return (Criteria) this;
}
public Criteria andConfigRecruitNotLike(String value) {
addCriterion("CONFIG_RECRUIT not like", value, "configRecruit");
return (Criteria) this;
}
public Criteria andConfigRecruitIn(List<String> values) {
addCriterion("CONFIG_RECRUIT in", values, "configRecruit");
return (Criteria) this;
}
public Criteria andConfigRecruitNotIn(List<String> values) {
addCriterion("CONFIG_RECRUIT not in", values, "configRecruit");
return (Criteria) this;
}
public Criteria andConfigRecruitBetween(String value1, String value2) {
addCriterion("CONFIG_RECRUIT between", value1, value2, "configRecruit");
return (Criteria) this;
}
public Criteria andConfigRecruitNotBetween(String value1, String value2) {
addCriterion("CONFIG_RECRUIT not between", value1, value2, "configRecruit");
return (Criteria) this;
}
public Criteria andShowAdIsNull() {
addCriterion("SHOW_AD is null");
return (Criteria) this;
}
public Criteria andShowAdIsNotNull() {
addCriterion("SHOW_AD is not null");
return (Criteria) this;
}
public Criteria andShowAdEqualTo(String value) {
addCriterion("SHOW_AD =", value, "showAd");
return (Criteria) this;
}
public Criteria andShowAdNotEqualTo(String value) {
addCriterion("SHOW_AD <>", value, "showAd");
return (Criteria) this;
}
public Criteria andShowAdGreaterThan(String value) {
addCriterion("SHOW_AD >", value, "showAd");
return (Criteria) this;
}
public Criteria andShowAdGreaterThanOrEqualTo(String value) {
addCriterion("SHOW_AD >=", value, "showAd");
return (Criteria) this;
}
public Criteria andShowAdLessThan(String value) {
addCriterion("SHOW_AD <", value, "showAd");
return (Criteria) this;
}
public Criteria andShowAdLessThanOrEqualTo(String value) {
addCriterion("SHOW_AD <=", value, "showAd");
return (Criteria) this;
}
public Criteria andShowAdLike(String value) {
addCriterion("SHOW_AD like", value, "showAd");
return (Criteria) this;
}
public Criteria andShowAdNotLike(String value) {
addCriterion("SHOW_AD not like", value, "showAd");
return (Criteria) this;
}
public Criteria andShowAdIn(List<String> values) {
addCriterion("SHOW_AD in", values, "showAd");
return (Criteria) this;
}
public Criteria andShowAdNotIn(List<String> values) {
addCriterion("SHOW_AD not in", values, "showAd");
return (Criteria) this;
}
public Criteria andShowAdBetween(String value1, String value2) {
addCriterion("SHOW_AD between", value1, value2, "showAd");
return (Criteria) this;
}
public Criteria andShowAdNotBetween(String value1, String value2) {
addCriterion("SHOW_AD not between", value1, value2, "showAd");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_personal_config
*
* @mbggenerated do_not_delete_during_merge Wed May 20 09:55:58 CST 2020
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}

View File

@ -0,0 +1,419 @@
package com.ruoyi.content.domain;
public class ArticlePublishSend {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private Integer id;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.ARTICLE_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private Integer articleId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.PUBLISH_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private String publishId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.SEND_TYPE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private String sendType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.GROUP_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private String groupId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.GROUP_NAME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private String groupName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.OPERATE_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private String operateId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.OPERATE_NAME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private String operateName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.PUBLISH_DATE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private String publishDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.PUBLISH_TIME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private String publishTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.OPERATE_DATE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private String operateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.OPERATE_TIME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private String operateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_send.SEND_STATE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
private String sendState;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.ID
*
* @return the value of article_publish_send.ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public Integer getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.ID
*
* @param id the value for article_publish_send.ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setId(Integer id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.ARTICLE_ID
*
* @return the value of article_publish_send.ARTICLE_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public Integer getArticleId() {
return articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.ARTICLE_ID
*
* @param articleId the value for article_publish_send.ARTICLE_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setArticleId(Integer articleId) {
this.articleId = articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.PUBLISH_ID
*
* @return the value of article_publish_send.PUBLISH_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public String getPublishId() {
return publishId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.PUBLISH_ID
*
* @param publishId the value for article_publish_send.PUBLISH_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setPublishId(String publishId) {
this.publishId = publishId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.SEND_TYPE
*
* @return the value of article_publish_send.SEND_TYPE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public String getSendType() {
return sendType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.SEND_TYPE
*
* @param sendType the value for article_publish_send.SEND_TYPE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setSendType(String sendType) {
this.sendType = sendType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.GROUP_ID
*
* @return the value of article_publish_send.GROUP_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public String getGroupId() {
return groupId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.GROUP_ID
*
* @param groupId the value for article_publish_send.GROUP_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setGroupId(String groupId) {
this.groupId = groupId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.GROUP_NAME
*
* @return the value of article_publish_send.GROUP_NAME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public String getGroupName() {
return groupName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.GROUP_NAME
*
* @param groupName the value for article_publish_send.GROUP_NAME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setGroupName(String groupName) {
this.groupName = groupName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.OPERATE_ID
*
* @return the value of article_publish_send.OPERATE_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public String getOperateId() {
return operateId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.OPERATE_ID
*
* @param operateId the value for article_publish_send.OPERATE_ID
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setOperateId(String operateId) {
this.operateId = operateId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.OPERATE_NAME
*
* @return the value of article_publish_send.OPERATE_NAME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public String getOperateName() {
return operateName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.OPERATE_NAME
*
* @param operateName the value for article_publish_send.OPERATE_NAME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setOperateName(String operateName) {
this.operateName = operateName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.PUBLISH_DATE
*
* @return the value of article_publish_send.PUBLISH_DATE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public String getPublishDate() {
return publishDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.PUBLISH_DATE
*
* @param publishDate the value for article_publish_send.PUBLISH_DATE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setPublishDate(String publishDate) {
this.publishDate = publishDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.PUBLISH_TIME
*
* @return the value of article_publish_send.PUBLISH_TIME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public String getPublishTime() {
return publishTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.PUBLISH_TIME
*
* @param publishTime the value for article_publish_send.PUBLISH_TIME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setPublishTime(String publishTime) {
this.publishTime = publishTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.OPERATE_DATE
*
* @return the value of article_publish_send.OPERATE_DATE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public String getOperateDate() {
return operateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.OPERATE_DATE
*
* @param operateDate the value for article_publish_send.OPERATE_DATE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setOperateDate(String operateDate) {
this.operateDate = operateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.OPERATE_TIME
*
* @return the value of article_publish_send.OPERATE_TIME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public String getOperateTime() {
return operateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.OPERATE_TIME
*
* @param operateTime the value for article_publish_send.OPERATE_TIME
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setOperateTime(String operateTime) {
this.operateTime = operateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_send.SEND_STATE
*
* @return the value of article_publish_send.SEND_STATE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public String getSendState() {
return sendState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_send.SEND_STATE
*
* @param sendState the value for article_publish_send.SEND_STATE
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
public void setSendState(String sendState) {
this.sendState = sendState;
}
}

View File

@ -0,0 +1,68 @@
package com.ruoyi.content.domain;
import java.io.Serializable;
public class ArticlePublishSendDTO implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
//推送id
private Integer id;
//推送对象类型
private String sendType;
//推送的员工工号或分公司编码
private String groupId;
//操作人姓名
private String operateName;
//操作时间
private String operateTime;
//推送时间
private String publishTime;
//推送状态
private String sendState;
public String getSendState() {
return sendState;
}
public void setSendState(String sendState) {
this.sendState = sendState;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getSendType() {
return sendType;
}
public void setSendType(String sendType) {
this.sendType = sendType;
}
public String getGroupId() {
return groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getOperateName() {
return operateName;
}
public void setOperateName(String operateName) {
this.operateName = operateName;
}
public String getOperateTime() {
return operateTime;
}
public void setOperateTime(String operateTime) {
this.operateTime = operateTime;
}
public String getPublishTime() {
return publishTime;
}
public void setPublishTime(String publishTime) {
this.publishTime = publishTime;
}
}

View File

@ -0,0 +1,578 @@
package com.ruoyi.content.domain;
import java.util.Date;
public class ArticlePublishTrack {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.PUBLISH_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String publishId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.COMPANY_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.USER_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String userId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.ARTICLE_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String articleId;
private String articleVersion;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.AD_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String adId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.CARD_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String cardId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.PUBLISH_VIEW_URL
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String publishViewUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.PUBLISH_EDIT_URL
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String publishEditUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.PUBLISH_STATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String publishState;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.CREATE_DATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.CREATE_TIME
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.CREATE_USER
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.UPDATE_USER
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.UPDATE_DATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.UPDATE_TIME
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String updateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.BACKGROUND_EDIT_URL
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String backgroundEditUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_publish_track.LIBRARY_STATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
private String libraryState;
private Date timestamp;
private String agentCode;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.PUBLISH_ID
*
* @return the value of article_publish_track.PUBLISH_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getPublishId() {
return publishId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.PUBLISH_ID
*
* @param publishId the value for article_publish_track.PUBLISH_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setPublishId(String publishId) {
this.publishId = publishId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.COMPANY_ID
*
* @return the value of article_publish_track.COMPANY_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.COMPANY_ID
*
* @param companyId the value for article_publish_track.COMPANY_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.USER_ID
*
* @return the value of article_publish_track.USER_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getUserId() {
return userId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.USER_ID
*
* @param userId the value for article_publish_track.USER_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setUserId(String userId) {
this.userId = userId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.ARTICLE_ID
*
* @return the value of article_publish_track.ARTICLE_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getArticleId() {
return articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.ARTICLE_ID
*
* @param articleId the value for article_publish_track.ARTICLE_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setArticleId(String articleId) {
this.articleId = articleId;
}
public String getArticleVersion() {
return this.articleVersion;
}
public void setArticleVersion(String articleVersion) {
this.articleVersion = articleVersion;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.AD_ID
*
* @return the value of article_publish_track.AD_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getAdId() {
return adId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.AD_ID
*
* @param adId the value for article_publish_track.AD_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setAdId(String adId) {
this.adId = adId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.CARD_ID
*
* @return the value of article_publish_track.CARD_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getCardId() {
return cardId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.CARD_ID
*
* @param cardId the value for article_publish_track.CARD_ID
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setCardId(String cardId) {
this.cardId = cardId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.PUBLISH_VIEW_URL
*
* @return the value of article_publish_track.PUBLISH_VIEW_URL
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getPublishViewUrl() {
return publishViewUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.PUBLISH_VIEW_URL
*
* @param publishViewUrl the value for article_publish_track.PUBLISH_VIEW_URL
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setPublishViewUrl(String publishViewUrl) {
this.publishViewUrl = publishViewUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.PUBLISH_EDIT_URL
*
* @return the value of article_publish_track.PUBLISH_EDIT_URL
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getPublishEditUrl() {
return publishEditUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.PUBLISH_EDIT_URL
*
* @param publishEditUrl the value for article_publish_track.PUBLISH_EDIT_URL
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setPublishEditUrl(String publishEditUrl) {
this.publishEditUrl = publishEditUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.PUBLISH_STATE
*
* @return the value of article_publish_track.PUBLISH_STATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getPublishState() {
return publishState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.PUBLISH_STATE
*
* @param publishState the value for article_publish_track.PUBLISH_STATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setPublishState(String publishState) {
this.publishState = publishState;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.CREATE_DATE
*
* @return the value of article_publish_track.CREATE_DATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.CREATE_DATE
*
* @param createDate the value for article_publish_track.CREATE_DATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.CREATE_TIME
*
* @return the value of article_publish_track.CREATE_TIME
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.CREATE_TIME
*
* @param createTime the value for article_publish_track.CREATE_TIME
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.CREATE_USER
*
* @return the value of article_publish_track.CREATE_USER
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.CREATE_USER
*
* @param createUser the value for article_publish_track.CREATE_USER
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.UPDATE_USER
*
* @return the value of article_publish_track.UPDATE_USER
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.UPDATE_USER
*
* @param updateUser the value for article_publish_track.UPDATE_USER
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.UPDATE_DATE
*
* @return the value of article_publish_track.UPDATE_DATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.UPDATE_DATE
*
* @param updateDate the value for article_publish_track.UPDATE_DATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.UPDATE_TIME
*
* @return the value of article_publish_track.UPDATE_TIME
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.UPDATE_TIME
*
* @param updateTime the value for article_publish_track.UPDATE_TIME
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.BACKGROUND_EDIT_URL
*
* @return the value of article_publish_track.BACKGROUND_EDIT_URL
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getBackgroundEditUrl() {
return backgroundEditUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.BACKGROUND_EDIT_URL
*
* @param backgroundEditUrl the value for article_publish_track.BACKGROUND_EDIT_URL
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setBackgroundEditUrl(String backgroundEditUrl) {
this.backgroundEditUrl = backgroundEditUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_publish_track.LIBRARY_STATE
*
* @return the value of article_publish_track.LIBRARY_STATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public String getLibraryState() {
return libraryState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_publish_track.LIBRARY_STATE
*
* @param libraryState the value for article_publish_track.LIBRARY_STATE
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
public void setLibraryState(String libraryState) {
this.libraryState = libraryState;
}
public Date getTimestamp() {
return this.timestamp;
}
public void setTimestamp(Date timestamp) {
this.timestamp = timestamp;
}
public String getAgentCode() {
return this.agentCode;
}
public void setAgentCode(String agentCode) {
this.agentCode = agentCode;
}
}

View File

@ -0,0 +1,291 @@
package com.ruoyi.content.domain;
public class ArticleSendUrl {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_send_url.PUBLISH_ID
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
private String publishId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_send_url.VERSION_NUMBER
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
private String versionNumber;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_send_url.QYH_ARTICLE_URL
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
private String qyhArticleUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_send_url.CREATE_DATE
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_send_url.CREATE_TIME
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_send_url.CREATE_USER
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_send_url.UPDATE_USER
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_send_url.UPDATE_DATE
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column article_send_url.UPDATE_TIME
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
private String updateTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_send_url.PUBLISH_ID
*
* @return the value of article_send_url.PUBLISH_ID
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public String getPublishId() {
return publishId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_send_url.PUBLISH_ID
*
* @param publishId the value for article_send_url.PUBLISH_ID
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void setPublishId(String publishId) {
this.publishId = publishId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_send_url.VERSION_NUMBER
*
* @return the value of article_send_url.VERSION_NUMBER
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public String getVersionNumber() {
return versionNumber;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_send_url.VERSION_NUMBER
*
* @param versionNumber the value for article_send_url.VERSION_NUMBER
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void setVersionNumber(String versionNumber) {
this.versionNumber = versionNumber;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_send_url.QYH_ARTICLE_URL
*
* @return the value of article_send_url.QYH_ARTICLE_URL
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public String getQyhArticleUrl() {
return qyhArticleUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_send_url.QYH_ARTICLE_URL
*
* @param qyhArticleUrl the value for article_send_url.QYH_ARTICLE_URL
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void setQyhArticleUrl(String qyhArticleUrl) {
this.qyhArticleUrl = qyhArticleUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_send_url.CREATE_DATE
*
* @return the value of article_send_url.CREATE_DATE
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_send_url.CREATE_DATE
*
* @param createDate the value for article_send_url.CREATE_DATE
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_send_url.CREATE_TIME
*
* @return the value of article_send_url.CREATE_TIME
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_send_url.CREATE_TIME
*
* @param createTime the value for article_send_url.CREATE_TIME
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_send_url.CREATE_USER
*
* @return the value of article_send_url.CREATE_USER
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_send_url.CREATE_USER
*
* @param createUser the value for article_send_url.CREATE_USER
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_send_url.UPDATE_USER
*
* @return the value of article_send_url.UPDATE_USER
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_send_url.UPDATE_USER
*
* @param updateUser the value for article_send_url.UPDATE_USER
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_send_url.UPDATE_DATE
*
* @return the value of article_send_url.UPDATE_DATE
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_send_url.UPDATE_DATE
*
* @param updateDate the value for article_send_url.UPDATE_DATE
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column article_send_url.UPDATE_TIME
*
* @return the value of article_send_url.UPDATE_TIME
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column article_send_url.UPDATE_TIME
*
* @param updateTime the value for article_send_url.UPDATE_TIME
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
}

View File

@ -0,0 +1,932 @@
package com.ruoyi.content.domain;
import java.util.ArrayList;
import java.util.List;
public class ArticleSendUrlExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public ArticleSendUrlExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andPublishIdIsNull() {
addCriterion("PUBLISH_ID is null");
return (Criteria) this;
}
public Criteria andPublishIdIsNotNull() {
addCriterion("PUBLISH_ID is not null");
return (Criteria) this;
}
public Criteria andPublishIdEqualTo(String value) {
addCriterion("PUBLISH_ID =", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdNotEqualTo(String value) {
addCriterion("PUBLISH_ID <>", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdGreaterThan(String value) {
addCriterion("PUBLISH_ID >", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdGreaterThanOrEqualTo(String value) {
addCriterion("PUBLISH_ID >=", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdLessThan(String value) {
addCriterion("PUBLISH_ID <", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdLessThanOrEqualTo(String value) {
addCriterion("PUBLISH_ID <=", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdLike(String value) {
addCriterion("PUBLISH_ID like", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdNotLike(String value) {
addCriterion("PUBLISH_ID not like", value, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdIn(List<String> values) {
addCriterion("PUBLISH_ID in", values, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdNotIn(List<String> values) {
addCriterion("PUBLISH_ID not in", values, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdBetween(String value1, String value2) {
addCriterion("PUBLISH_ID between", value1, value2, "publishId");
return (Criteria) this;
}
public Criteria andPublishIdNotBetween(String value1, String value2) {
addCriterion("PUBLISH_ID not between", value1, value2, "publishId");
return (Criteria) this;
}
public Criteria andVersionNumberIsNull() {
addCriterion("VERSION_NUMBER is null");
return (Criteria) this;
}
public Criteria andVersionNumberIsNotNull() {
addCriterion("VERSION_NUMBER is not null");
return (Criteria) this;
}
public Criteria andVersionNumberEqualTo(String value) {
addCriterion("VERSION_NUMBER =", value, "versionNumber");
return (Criteria) this;
}
public Criteria andVersionNumberNotEqualTo(String value) {
addCriterion("VERSION_NUMBER <>", value, "versionNumber");
return (Criteria) this;
}
public Criteria andVersionNumberGreaterThan(String value) {
addCriterion("VERSION_NUMBER >", value, "versionNumber");
return (Criteria) this;
}
public Criteria andVersionNumberGreaterThanOrEqualTo(String value) {
addCriterion("VERSION_NUMBER >=", value, "versionNumber");
return (Criteria) this;
}
public Criteria andVersionNumberLessThan(String value) {
addCriterion("VERSION_NUMBER <", value, "versionNumber");
return (Criteria) this;
}
public Criteria andVersionNumberLessThanOrEqualTo(String value) {
addCriterion("VERSION_NUMBER <=", value, "versionNumber");
return (Criteria) this;
}
public Criteria andVersionNumberLike(String value) {
addCriterion("VERSION_NUMBER like", value, "versionNumber");
return (Criteria) this;
}
public Criteria andVersionNumberNotLike(String value) {
addCriterion("VERSION_NUMBER not like", value, "versionNumber");
return (Criteria) this;
}
public Criteria andVersionNumberIn(List<String> values) {
addCriterion("VERSION_NUMBER in", values, "versionNumber");
return (Criteria) this;
}
public Criteria andVersionNumberNotIn(List<String> values) {
addCriterion("VERSION_NUMBER not in", values, "versionNumber");
return (Criteria) this;
}
public Criteria andVersionNumberBetween(String value1, String value2) {
addCriterion("VERSION_NUMBER between", value1, value2, "versionNumber");
return (Criteria) this;
}
public Criteria andVersionNumberNotBetween(String value1, String value2) {
addCriterion("VERSION_NUMBER not between", value1, value2, "versionNumber");
return (Criteria) this;
}
public Criteria andQyhArticleUrlIsNull() {
addCriterion("QYH_ARTICLE_URL is null");
return (Criteria) this;
}
public Criteria andQyhArticleUrlIsNotNull() {
addCriterion("QYH_ARTICLE_URL is not null");
return (Criteria) this;
}
public Criteria andQyhArticleUrlEqualTo(String value) {
addCriterion("QYH_ARTICLE_URL =", value, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andQyhArticleUrlNotEqualTo(String value) {
addCriterion("QYH_ARTICLE_URL <>", value, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andQyhArticleUrlGreaterThan(String value) {
addCriterion("QYH_ARTICLE_URL >", value, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andQyhArticleUrlGreaterThanOrEqualTo(String value) {
addCriterion("QYH_ARTICLE_URL >=", value, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andQyhArticleUrlLessThan(String value) {
addCriterion("QYH_ARTICLE_URL <", value, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andQyhArticleUrlLessThanOrEqualTo(String value) {
addCriterion("QYH_ARTICLE_URL <=", value, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andQyhArticleUrlLike(String value) {
addCriterion("QYH_ARTICLE_URL like", value, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andQyhArticleUrlNotLike(String value) {
addCriterion("QYH_ARTICLE_URL not like", value, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andQyhArticleUrlIn(List<String> values) {
addCriterion("QYH_ARTICLE_URL in", values, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andQyhArticleUrlNotIn(List<String> values) {
addCriterion("QYH_ARTICLE_URL not in", values, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andQyhArticleUrlBetween(String value1, String value2) {
addCriterion("QYH_ARTICLE_URL between", value1, value2, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andQyhArticleUrlNotBetween(String value1, String value2) {
addCriterion("QYH_ARTICLE_URL not between", value1, value2, "qyhArticleUrl");
return (Criteria) this;
}
public Criteria andCreateDateIsNull() {
addCriterion("CREATE_DATE is null");
return (Criteria) this;
}
public Criteria andCreateDateIsNotNull() {
addCriterion("CREATE_DATE is not null");
return (Criteria) this;
}
public Criteria andCreateDateEqualTo(String value) {
addCriterion("CREATE_DATE =", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotEqualTo(String value) {
addCriterion("CREATE_DATE <>", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateGreaterThan(String value) {
addCriterion("CREATE_DATE >", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_DATE >=", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLessThan(String value) {
addCriterion("CREATE_DATE <", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLessThanOrEqualTo(String value) {
addCriterion("CREATE_DATE <=", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLike(String value) {
addCriterion("CREATE_DATE like", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotLike(String value) {
addCriterion("CREATE_DATE not like", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateIn(List<String> values) {
addCriterion("CREATE_DATE in", values, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotIn(List<String> values) {
addCriterion("CREATE_DATE not in", values, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateBetween(String value1, String value2) {
addCriterion("CREATE_DATE between", value1, value2, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotBetween(String value1, String value2) {
addCriterion("CREATE_DATE not between", value1, value2, "createDate");
return (Criteria) this;
}
public Criteria andCreateTimeIsNull() {
addCriterion("CREATE_TIME is null");
return (Criteria) this;
}
public Criteria andCreateTimeIsNotNull() {
addCriterion("CREATE_TIME is not null");
return (Criteria) this;
}
public Criteria andCreateTimeEqualTo(String value) {
addCriterion("CREATE_TIME =", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotEqualTo(String value) {
addCriterion("CREATE_TIME <>", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThan(String value) {
addCriterion("CREATE_TIME >", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_TIME >=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThan(String value) {
addCriterion("CREATE_TIME <", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThanOrEqualTo(String value) {
addCriterion("CREATE_TIME <=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLike(String value) {
addCriterion("CREATE_TIME like", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotLike(String value) {
addCriterion("CREATE_TIME not like", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeIn(List<String> values) {
addCriterion("CREATE_TIME in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotIn(List<String> values) {
addCriterion("CREATE_TIME not in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeBetween(String value1, String value2) {
addCriterion("CREATE_TIME between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotBetween(String value1, String value2) {
addCriterion("CREATE_TIME not between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateUserIsNull() {
addCriterion("CREATE_USER is null");
return (Criteria) this;
}
public Criteria andCreateUserIsNotNull() {
addCriterion("CREATE_USER is not null");
return (Criteria) this;
}
public Criteria andCreateUserEqualTo(String value) {
addCriterion("CREATE_USER =", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotEqualTo(String value) {
addCriterion("CREATE_USER <>", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserGreaterThan(String value) {
addCriterion("CREATE_USER >", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_USER >=", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLessThan(String value) {
addCriterion("CREATE_USER <", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLessThanOrEqualTo(String value) {
addCriterion("CREATE_USER <=", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLike(String value) {
addCriterion("CREATE_USER like", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotLike(String value) {
addCriterion("CREATE_USER not like", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserIn(List<String> values) {
addCriterion("CREATE_USER in", values, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotIn(List<String> values) {
addCriterion("CREATE_USER not in", values, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserBetween(String value1, String value2) {
addCriterion("CREATE_USER between", value1, value2, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotBetween(String value1, String value2) {
addCriterion("CREATE_USER not between", value1, value2, "createUser");
return (Criteria) this;
}
public Criteria andUpdateUserIsNull() {
addCriterion("UPDATE_USER is null");
return (Criteria) this;
}
public Criteria andUpdateUserIsNotNull() {
addCriterion("UPDATE_USER is not null");
return (Criteria) this;
}
public Criteria andUpdateUserEqualTo(String value) {
addCriterion("UPDATE_USER =", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotEqualTo(String value) {
addCriterion("UPDATE_USER <>", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserGreaterThan(String value) {
addCriterion("UPDATE_USER >", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_USER >=", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLessThan(String value) {
addCriterion("UPDATE_USER <", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLessThanOrEqualTo(String value) {
addCriterion("UPDATE_USER <=", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLike(String value) {
addCriterion("UPDATE_USER like", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotLike(String value) {
addCriterion("UPDATE_USER not like", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserIn(List<String> values) {
addCriterion("UPDATE_USER in", values, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotIn(List<String> values) {
addCriterion("UPDATE_USER not in", values, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserBetween(String value1, String value2) {
addCriterion("UPDATE_USER between", value1, value2, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotBetween(String value1, String value2) {
addCriterion("UPDATE_USER not between", value1, value2, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateDateIsNull() {
addCriterion("UPDATE_DATE is null");
return (Criteria) this;
}
public Criteria andUpdateDateIsNotNull() {
addCriterion("UPDATE_DATE is not null");
return (Criteria) this;
}
public Criteria andUpdateDateEqualTo(String value) {
addCriterion("UPDATE_DATE =", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotEqualTo(String value) {
addCriterion("UPDATE_DATE <>", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThan(String value) {
addCriterion("UPDATE_DATE >", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_DATE >=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThan(String value) {
addCriterion("UPDATE_DATE <", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThanOrEqualTo(String value) {
addCriterion("UPDATE_DATE <=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLike(String value) {
addCriterion("UPDATE_DATE like", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotLike(String value) {
addCriterion("UPDATE_DATE not like", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateIn(List<String> values) {
addCriterion("UPDATE_DATE in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotIn(List<String> values) {
addCriterion("UPDATE_DATE not in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateBetween(String value1, String value2) {
addCriterion("UPDATE_DATE between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotBetween(String value1, String value2) {
addCriterion("UPDATE_DATE not between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNull() {
addCriterion("UPDATE_TIME is null");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNotNull() {
addCriterion("UPDATE_TIME is not null");
return (Criteria) this;
}
public Criteria andUpdateTimeEqualTo(String value) {
addCriterion("UPDATE_TIME =", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotEqualTo(String value) {
addCriterion("UPDATE_TIME <>", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThan(String value) {
addCriterion("UPDATE_TIME >", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_TIME >=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThan(String value) {
addCriterion("UPDATE_TIME <", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThanOrEqualTo(String value) {
addCriterion("UPDATE_TIME <=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLike(String value) {
addCriterion("UPDATE_TIME like", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotLike(String value) {
addCriterion("UPDATE_TIME not like", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeIn(List<String> values) {
addCriterion("UPDATE_TIME in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotIn(List<String> values) {
addCriterion("UPDATE_TIME not in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeBetween(String value1, String value2) {
addCriterion("UPDATE_TIME between", value1, value2, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotBetween(String value1, String value2) {
addCriterion("UPDATE_TIME not between", value1, value2, "updateTime");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_send_url
*
* @mbggenerated do_not_delete_during_merge Tue Sep 04 17:49:40 CST 2018
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table article_send_url
*
* @mbggenerated Tue Sep 04 17:49:40 CST 2018
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}

View File

@ -0,0 +1,238 @@
package com.ruoyi.content.domain;
public class ArticleinfoExDTO {
private Integer articleId;
private String articleName;
private String pushDate;
private String articleAuthor;
private String listPicUrl;
private String special;
private String channelId;
private String companyId;
private String originalUrl;
private String shareImgUrl;
private String shareTitle;
private String articleState;
private String shareDes;
private String createDate;
private String createTime;
private String createUser;
private String updateDate;
private String updateTime;
private String articleContent;
private String shareCount;//分享次数
private String visitors; //文章浏览人数
private String publishViewUrl;
private String publishEditUrl;
public Integer getArticleId() {
return articleId;
}
public void setArticleId(Integer articleId) {
this.articleId = articleId;
}
public String getArticleName() {
return articleName;
}
public void setArticleName(String articleName) {
this.articleName = articleName;
}
public String getPushDate() {
return pushDate;
}
public void setPushDate(String pushDate) {
this.pushDate = pushDate;
}
public String getArticleAuthor() {
return articleAuthor;
}
public void setArticleAuthor(String articleAuthor) {
this.articleAuthor = articleAuthor;
}
public String getListPicUrl() {
return listPicUrl;
}
public void setListPicUrl(String listPicUrl) {
this.listPicUrl = listPicUrl;
}
public String getSpecial() {
return special;
}
public void setSpecial(String special) {
this.special = special;
}
public String getChannelId() {
return channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
public String getOriginalUrl() {
return originalUrl;
}
public void setOriginalUrl(String originalUrl) {
this.originalUrl = originalUrl;
}
public String getShareImgUrl() {
return shareImgUrl;
}
public void setShareImgUrl(String shareImgUrl) {
this.shareImgUrl = shareImgUrl;
}
public String getShareTitle() {
return shareTitle;
}
public void setShareTitle(String shareTitle) {
this.shareTitle = shareTitle;
}
public String getArticleState() {
return articleState;
}
public void setArticleState(String articleState) {
this.articleState = articleState;
}
public String getShareDes() {
return shareDes;
}
public void setShareDes(String shareDes) {
this.shareDes = shareDes;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getCreateUser() {
return createUser;
}
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
public String getUpdateDate() {
return updateDate;
}
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public String getArticleContent() {
return articleContent;
}
public void setArticleContent(String articleContent) {
this.articleContent = articleContent;
}
public String getShareCount() {
return shareCount;
}
public void setShareCount(String shareCount) {
this.shareCount = shareCount;
}
public String getVisitors() {
return visitors;
}
public void setVisitors(String visitors) {
this.visitors = visitors;
}
public String getPublishViewUrl() {
return publishViewUrl;
}
public void setPublishViewUrl(String publishViewUrl) {
this.publishViewUrl = publishViewUrl;
}
public String getPublishEditUrl() {
return publishEditUrl;
}
public void setPublishEditUrl(String publishEditUrl) {
this.publishEditUrl = publishEditUrl;
}
}

View File

@ -0,0 +1,451 @@
package com.ruoyi.content.domain;
public class AttachmentInfo {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.FILE_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private Integer fileId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.ARTICLE_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String articleId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.FILE_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String fileName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.FILE_OSSID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String fileOssid;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.FILE_PATH
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String filePath;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.FILE_URL
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String fileUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.FILE_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String fileType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.RELATION_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String relationType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column attachment_info.REMARK
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String remark;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.FILE_ID
*
* @return the value of attachment_info.FILE_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public Integer getFileId() {
return fileId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.FILE_ID
*
* @param fileId the value for attachment_info.FILE_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setFileId(Integer fileId) {
this.fileId = fileId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.ARTICLE_ID
*
* @return the value of attachment_info.ARTICLE_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getArticleId() {
return articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.ARTICLE_ID
*
* @param articleId the value for attachment_info.ARTICLE_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setArticleId(String articleId) {
this.articleId = articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.FILE_NAME
*
* @return the value of attachment_info.FILE_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getFileName() {
return fileName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.FILE_NAME
*
* @param fileName the value for attachment_info.FILE_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setFileName(String fileName) {
this.fileName = fileName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.FILE_OSSID
*
* @return the value of attachment_info.FILE_OSSID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getFileOssid() {
return fileOssid;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.FILE_OSSID
*
* @param fileOssid the value for attachment_info.FILE_OSSID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setFileOssid(String fileOssid) {
this.fileOssid = fileOssid;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.FILE_PATH
*
* @return the value of attachment_info.FILE_PATH
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getFilePath() {
return filePath;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.FILE_PATH
*
* @param filePath the value for attachment_info.FILE_PATH
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setFilePath(String filePath) {
this.filePath = filePath;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.FILE_URL
*
* @return the value of attachment_info.FILE_URL
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getFileUrl() {
return fileUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.FILE_URL
*
* @param fileUrl the value for attachment_info.FILE_URL
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setFileUrl(String fileUrl) {
this.fileUrl = fileUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.FILE_TYPE
*
* @return the value of attachment_info.FILE_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getFileType() {
return fileType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.FILE_TYPE
*
* @param fileType the value for attachment_info.FILE_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setFileType(String fileType) {
this.fileType = fileType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.RELATION_TYPE
*
* @return the value of attachment_info.RELATION_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getRelationType() {
return relationType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.RELATION_TYPE
*
* @param relationType the value for attachment_info.RELATION_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setRelationType(String relationType) {
this.relationType = relationType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.CREATE_DATE
*
* @return the value of attachment_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.CREATE_DATE
*
* @param createDate the value for attachment_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.CREATE_TIME
*
* @return the value of attachment_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.CREATE_TIME
*
* @param createTime the value for attachment_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.CREATE_USER
*
* @return the value of attachment_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.CREATE_USER
*
* @param createUser the value for attachment_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.UPDATE_DATE
*
* @return the value of attachment_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.UPDATE_DATE
*
* @param updateDate the value for attachment_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.UPDATE_TIME
*
* @return the value of attachment_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.UPDATE_TIME
*
* @param updateTime the value for attachment_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column attachment_info.REMARK
*
* @return the value of attachment_info.REMARK
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getRemark() {
return remark;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column attachment_info.REMARK
*
* @param remark the value for attachment_info.REMARK
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setRemark(String remark) {
this.remark = remark;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,40 @@
package com.ruoyi.content.domain;
public class AuthorityExDto {
private String id;
private String level;
private String type;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
private String operatorRoleName;
private String operatorRolePath;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getLevel() {
return level;
}
public void setLevel(String level) {
this.level = level;
}
public String getOperatorRoleName() {
return operatorRoleName;
}
public void setOperatorRoleName(String operatorRoleName) {
this.operatorRoleName = operatorRoleName;
}
public String getOperatorRolePath() {
return operatorRolePath;
}
public void setOperatorRolePath(String operatorRolePath) {
this.operatorRolePath = operatorRolePath;
}
}

View File

@ -0,0 +1,130 @@
package com.ruoyi.content.domain;
import java.util.Date;
import java.util.List;
public class BaseCodeTree {
private Integer id;
private String codeCode;
private String codeType;
private String orderNo;
private String codeCname;
private String codeEname;
private String codeTname;
private String state;
private String createUser;
private Date createTime;
private String updateUser;
private Date updateTime;
private String updateRemark;
private String businessArea;
private String companyId;
private String branchId;
private List<BaseCodeTree> child;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getCodeCode() {
return codeCode;
}
public void setCodeCode(String codeCode) {
this.codeCode = codeCode;
}
public String getCodeType() {
return codeType;
}
public void setCodeType(String codeType) {
this.codeType = codeType;
}
public String getOrderNo() {
return orderNo;
}
public void setOrderNo(String orderNo) {
this.orderNo = orderNo;
}
public String getCodeCname() {
return codeCname;
}
public void setCodeCname(String codeCname) {
this.codeCname = codeCname;
}
public String getCodeEname() {
return codeEname;
}
public void setCodeEname(String codeEname) {
this.codeEname = codeEname;
}
public String getCodeTname() {
return codeTname;
}
public void setCodeTname(String codeTname) {
this.codeTname = codeTname;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getCreateUser() {
return createUser;
}
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getUpdateUser() {
return updateUser;
}
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public String getUpdateRemark() {
return updateRemark;
}
public void setUpdateRemark(String updateRemark) {
this.updateRemark = updateRemark;
}
public String getBusinessArea() {
return businessArea;
}
public void setBusinessArea(String businessArea) {
this.businessArea = businessArea;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
public String getBranchId() {
return branchId;
}
public void setBranchId(String branchId) {
this.branchId = branchId;
}
public List<BaseCodeTree> getChild() {
return child;
}
public void setChild(List<BaseCodeTree> child) {
this.child = child;
}
}

View File

@ -0,0 +1,10 @@
package com.ruoyi.content.domain;
import org.apache.commons.lang3.builder.ToStringBuilder;
public class BaseDTO {
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}

View File

@ -0,0 +1,65 @@
package com.ruoyi.content.domain;
import java.io.Serializable;
public class BranchIdArticle implements Serializable{
private static final long serialVersionUID = -4566641360099978631L;
private String articleId;
private String articleName;
private String createDate;
private String updateDate;
private String libraryState;
private String publishId;
private String name;
private String articleVersion;
public String getArticleId() {
return articleId;
}
public void setArticleId(String articleId) {
this.articleId = articleId;
}
public String getArticleName() {
return articleName;
}
public void setArticleName(String articleName) {
this.articleName = articleName;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getUpdateDate() {
return updateDate;
}
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
public String getLibraryState() {
return libraryState;
}
public void setLibraryState(String libraryState) {
this.libraryState = libraryState;
}
public String getPublishId() {
return publishId;
}
public void setPublishId(String publishId) {
this.publishId = publishId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getArticleVersion() {
return this.articleVersion;
}
public void setArticleVersion(String articleVersion) {
this.articleVersion = articleVersion;
}
}

View File

@ -0,0 +1,515 @@
package com.ruoyi.content.domain;
public class CardInfo {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CARD_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private Integer cardId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CARD_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String cardType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CARD_IMAGE_URL
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String cardImageUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CARD_TITLE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String cardTitle;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CARD_NAME1
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String cardName1;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CARD_NAME2
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String cardName2;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CARD_LINK1
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String cardLink1;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CARD_LINK2
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String cardLink2;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CARD_STATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String cardState;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column card_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CARD_ID
*
* @return the value of card_info.CARD_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public Integer getCardId() {
return cardId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CARD_ID
*
* @param cardId the value for card_info.CARD_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCardId(Integer cardId) {
this.cardId = cardId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.COMPANY_ID
*
* @return the value of card_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.COMPANY_ID
*
* @param companyId the value for card_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CARD_TYPE
*
* @return the value of card_info.CARD_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCardType() {
return cardType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CARD_TYPE
*
* @param cardType the value for card_info.CARD_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCardType(String cardType) {
this.cardType = cardType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CARD_IMAGE_URL
*
* @return the value of card_info.CARD_IMAGE_URL
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCardImageUrl() {
return cardImageUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CARD_IMAGE_URL
*
* @param cardImageUrl the value for card_info.CARD_IMAGE_URL
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCardImageUrl(String cardImageUrl) {
this.cardImageUrl = cardImageUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CARD_TITLE
*
* @return the value of card_info.CARD_TITLE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCardTitle() {
return cardTitle;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CARD_TITLE
*
* @param cardTitle the value for card_info.CARD_TITLE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCardTitle(String cardTitle) {
this.cardTitle = cardTitle;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CARD_NAME1
*
* @return the value of card_info.CARD_NAME1
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCardName1() {
return cardName1;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CARD_NAME1
*
* @param cardName1 the value for card_info.CARD_NAME1
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCardName1(String cardName1) {
this.cardName1 = cardName1;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CARD_NAME2
*
* @return the value of card_info.CARD_NAME2
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCardName2() {
return cardName2;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CARD_NAME2
*
* @param cardName2 the value for card_info.CARD_NAME2
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCardName2(String cardName2) {
this.cardName2 = cardName2;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CARD_LINK1
*
* @return the value of card_info.CARD_LINK1
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCardLink1() {
return cardLink1;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CARD_LINK1
*
* @param cardLink1 the value for card_info.CARD_LINK1
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCardLink1(String cardLink1) {
this.cardLink1 = cardLink1;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CARD_LINK2
*
* @return the value of card_info.CARD_LINK2
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCardLink2() {
return cardLink2;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CARD_LINK2
*
* @param cardLink2 the value for card_info.CARD_LINK2
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCardLink2(String cardLink2) {
this.cardLink2 = cardLink2;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CARD_STATE
*
* @return the value of card_info.CARD_STATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCardState() {
return cardState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CARD_STATE
*
* @param cardState the value for card_info.CARD_STATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCardState(String cardState) {
this.cardState = cardState;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CREATE_DATE
*
* @return the value of card_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CREATE_DATE
*
* @param createDate the value for card_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CREATE_TIME
*
* @return the value of card_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CREATE_TIME
*
* @param createTime the value for card_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.CREATE_USER
*
* @return the value of card_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.CREATE_USER
*
* @param createUser the value for card_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.UPDATE_USER
*
* @return the value of card_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.UPDATE_USER
*
* @param updateUser the value for card_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.UPDATE_DATE
*
* @return the value of card_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.UPDATE_DATE
*
* @param updateDate the value for card_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column card_info.UPDATE_TIME
*
* @return the value of card_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column card_info.UPDATE_TIME
*
* @param updateTime the value for card_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,355 @@
package com.ruoyi.content.domain;
public class ChannelInfo {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column channel_info.CHANNEL_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private Integer channelId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column channel_info.PARENT_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String parentId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column channel_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column channel_info.CHANNEL_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String channelName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column channel_info.CHANNEL_STATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String channelState;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column channel_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column channel_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column channel_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column channel_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column channel_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column channel_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column channel_info.CHANNEL_ID
*
* @return the value of channel_info.CHANNEL_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public Integer getChannelId() {
return channelId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column channel_info.CHANNEL_ID
*
* @param channelId the value for channel_info.CHANNEL_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setChannelId(Integer channelId) {
this.channelId = channelId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column channel_info.PARENT_ID
*
* @return the value of channel_info.PARENT_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getParentId() {
return parentId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column channel_info.PARENT_ID
*
* @param parentId the value for channel_info.PARENT_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setParentId(String parentId) {
this.parentId = parentId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column channel_info.COMPANY_ID
*
* @return the value of channel_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column channel_info.COMPANY_ID
*
* @param companyId the value for channel_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column channel_info.CHANNEL_NAME
*
* @return the value of channel_info.CHANNEL_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getChannelName() {
return channelName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column channel_info.CHANNEL_NAME
*
* @param channelName the value for channel_info.CHANNEL_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setChannelName(String channelName) {
this.channelName = channelName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column channel_info.CHANNEL_STATE
*
* @return the value of channel_info.CHANNEL_STATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getChannelState() {
return channelState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column channel_info.CHANNEL_STATE
*
* @param channelState the value for channel_info.CHANNEL_STATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setChannelState(String channelState) {
this.channelState = channelState;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column channel_info.CREATE_DATE
*
* @return the value of channel_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column channel_info.CREATE_DATE
*
* @param createDate the value for channel_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column channel_info.CREATE_TIME
*
* @return the value of channel_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column channel_info.CREATE_TIME
*
* @param createTime the value for channel_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column channel_info.CREATE_USER
*
* @return the value of channel_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column channel_info.CREATE_USER
*
* @param createUser the value for channel_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column channel_info.UPDATE_USER
*
* @return the value of channel_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column channel_info.UPDATE_USER
*
* @param updateUser the value for channel_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column channel_info.UPDATE_DATE
*
* @return the value of channel_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column channel_info.UPDATE_DATE
*
* @param updateDate the value for channel_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column channel_info.UPDATE_TIME
*
* @return the value of channel_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column channel_info.UPDATE_TIME
*
* @param updateTime the value for channel_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,643 @@
package com.ruoyi.content.domain;
public class ClickTrackInfo {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.CLICK_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String clickId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.FORWARD_TIMESTAMP
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String forwardTimestamp;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.PARENT_CLICK_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String parentClickId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.CLICK_OPEN_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String clickOpenId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.CLICK_USER_NICKNAME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String clickUserNickname;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.CLICK_USER_HEADIMGURL
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String clickUserHeadimgurl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.PUBLISH_USER_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String publishUserId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.ARTICLE_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String articleId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.CLICK_USER_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String clickUserId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.AD_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String adId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.FROM_SHARE_STATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String fromShareState;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.SHARE_STATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String shareState;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.WATCH_TIME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String watchTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.CREATE_DATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.CREATE_TIME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.CREATE_USER
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.UPDATE_USER
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.UPDATE_DATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.UPDATE_TIME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String updateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column click_track_info.CLICK_USER_INFO
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
private String clickUserInfo;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.CLICK_ID
*
* @return the value of click_track_info.CLICK_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getClickId() {
return clickId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.CLICK_ID
*
* @param clickId the value for click_track_info.CLICK_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setClickId(String clickId) {
this.clickId = clickId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.FORWARD_TIMESTAMP
*
* @return the value of click_track_info.FORWARD_TIMESTAMP
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getForwardTimestamp() {
return forwardTimestamp;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.FORWARD_TIMESTAMP
*
* @param forwardTimestamp the value for click_track_info.FORWARD_TIMESTAMP
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setForwardTimestamp(String forwardTimestamp) {
this.forwardTimestamp = forwardTimestamp;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.PARENT_CLICK_ID
*
* @return the value of click_track_info.PARENT_CLICK_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getParentClickId() {
return parentClickId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.PARENT_CLICK_ID
*
* @param parentClickId the value for click_track_info.PARENT_CLICK_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setParentClickId(String parentClickId) {
this.parentClickId = parentClickId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.CLICK_OPEN_ID
*
* @return the value of click_track_info.CLICK_OPEN_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getClickOpenId() {
return clickOpenId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.CLICK_OPEN_ID
*
* @param clickOpenId the value for click_track_info.CLICK_OPEN_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setClickOpenId(String clickOpenId) {
this.clickOpenId = clickOpenId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.CLICK_USER_NICKNAME
*
* @return the value of click_track_info.CLICK_USER_NICKNAME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getClickUserNickname() {
return clickUserNickname;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.CLICK_USER_NICKNAME
*
* @param clickUserNickname the value for click_track_info.CLICK_USER_NICKNAME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setClickUserNickname(String clickUserNickname) {
this.clickUserNickname = clickUserNickname;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.CLICK_USER_HEADIMGURL
*
* @return the value of click_track_info.CLICK_USER_HEADIMGURL
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getClickUserHeadimgurl() {
return clickUserHeadimgurl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.CLICK_USER_HEADIMGURL
*
* @param clickUserHeadimgurl the value for click_track_info.CLICK_USER_HEADIMGURL
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setClickUserHeadimgurl(String clickUserHeadimgurl) {
this.clickUserHeadimgurl = clickUserHeadimgurl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.PUBLISH_USER_ID
*
* @return the value of click_track_info.PUBLISH_USER_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getPublishUserId() {
return publishUserId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.PUBLISH_USER_ID
*
* @param publishUserId the value for click_track_info.PUBLISH_USER_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setPublishUserId(String publishUserId) {
this.publishUserId = publishUserId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.ARTICLE_ID
*
* @return the value of click_track_info.ARTICLE_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getArticleId() {
return articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.ARTICLE_ID
*
* @param articleId the value for click_track_info.ARTICLE_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setArticleId(String articleId) {
this.articleId = articleId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.CLICK_USER_ID
*
* @return the value of click_track_info.CLICK_USER_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getClickUserId() {
return clickUserId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.CLICK_USER_ID
*
* @param clickUserId the value for click_track_info.CLICK_USER_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setClickUserId(String clickUserId) {
this.clickUserId = clickUserId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.AD_ID
*
* @return the value of click_track_info.AD_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getAdId() {
return adId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.AD_ID
*
* @param adId the value for click_track_info.AD_ID
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setAdId(String adId) {
this.adId = adId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.FROM_SHARE_STATE
*
* @return the value of click_track_info.FROM_SHARE_STATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getFromShareState() {
return fromShareState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.FROM_SHARE_STATE
*
* @param fromShareState the value for click_track_info.FROM_SHARE_STATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setFromShareState(String fromShareState) {
this.fromShareState = fromShareState;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.SHARE_STATE
*
* @return the value of click_track_info.SHARE_STATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getShareState() {
return shareState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.SHARE_STATE
*
* @param shareState the value for click_track_info.SHARE_STATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setShareState(String shareState) {
this.shareState = shareState;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.WATCH_TIME
*
* @return the value of click_track_info.WATCH_TIME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getWatchTime() {
return watchTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.WATCH_TIME
*
* @param watchTime the value for click_track_info.WATCH_TIME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setWatchTime(String watchTime) {
this.watchTime = watchTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.CREATE_DATE
*
* @return the value of click_track_info.CREATE_DATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.CREATE_DATE
*
* @param createDate the value for click_track_info.CREATE_DATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.CREATE_TIME
*
* @return the value of click_track_info.CREATE_TIME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.CREATE_TIME
*
* @param createTime the value for click_track_info.CREATE_TIME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.CREATE_USER
*
* @return the value of click_track_info.CREATE_USER
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.CREATE_USER
*
* @param createUser the value for click_track_info.CREATE_USER
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.UPDATE_USER
*
* @return the value of click_track_info.UPDATE_USER
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.UPDATE_USER
*
* @param updateUser the value for click_track_info.UPDATE_USER
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.UPDATE_DATE
*
* @return the value of click_track_info.UPDATE_DATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.UPDATE_DATE
*
* @param updateDate the value for click_track_info.UPDATE_DATE
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.UPDATE_TIME
*
* @return the value of click_track_info.UPDATE_TIME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.UPDATE_TIME
*
* @param updateTime the value for click_track_info.UPDATE_TIME
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column click_track_info.CLICK_USER_INFO
*
* @return the value of click_track_info.CLICK_USER_INFO
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public String getClickUserInfo() {
return clickUserInfo;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column click_track_info.CLICK_USER_INFO
*
* @param clickUserInfo the value for click_track_info.CLICK_USER_INFO
*
* @mbggenerated Wed Jun 20 16:32:59 CST 2018
*/
public void setClickUserInfo(String clickUserInfo) {
this.clickUserInfo = clickUserInfo;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,46 @@
package com.ruoyi.content.domain;
import java.io.Serializable;
/**
* 文章查看记录信息数据
*
* @author
* @date 2018年4月16日
*
*/
public class ClickUserInfo implements Serializable{
private static final long serialVersionUID = 3152100900712336169L;
private String openId;
private String headImgUrl;
private String nickName;
private String toShareState;
public String getOpenId() {
return openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getHeadImgUrl() {
return headImgUrl;
}
public void setHeadImgUrl(String headImgUrl) {
this.headImgUrl = headImgUrl;
}
public String getNickName() {
return nickName;
}
public void setNickName(String nickName) {
this.nickName = nickName;
}
public String getToShareState() {
return toShareState;
}
public void setToShareState(String toShareState) {
this.toShareState = toShareState;
}
}

View File

@ -0,0 +1,259 @@
package com.ruoyi.content.domain;
public class CmsRoleAuthority {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_role_authority.SELF_CHILD
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
private String selfChild;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_role_authority.PARENT_CHILD
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
private String parentChild;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_role_authority.CREATE_DATE
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_role_authority.CREATE_TIME
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_role_authority.CREATE_USER
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_role_authority.UPDATE_USER
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_role_authority.UPDATE_DATE
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_role_authority.UPDATE_TIME
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
private String updateTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_role_authority.SELF_CHILD
*
* @return the value of cms_role_authority.SELF_CHILD
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public String getSelfChild() {
return selfChild;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_role_authority.SELF_CHILD
*
* @param selfChild the value for cms_role_authority.SELF_CHILD
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void setSelfChild(String selfChild) {
this.selfChild = selfChild;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_role_authority.PARENT_CHILD
*
* @return the value of cms_role_authority.PARENT_CHILD
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public String getParentChild() {
return parentChild;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_role_authority.PARENT_CHILD
*
* @param parentChild the value for cms_role_authority.PARENT_CHILD
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void setParentChild(String parentChild) {
this.parentChild = parentChild;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_role_authority.CREATE_DATE
*
* @return the value of cms_role_authority.CREATE_DATE
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_role_authority.CREATE_DATE
*
* @param createDate the value for cms_role_authority.CREATE_DATE
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_role_authority.CREATE_TIME
*
* @return the value of cms_role_authority.CREATE_TIME
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_role_authority.CREATE_TIME
*
* @param createTime the value for cms_role_authority.CREATE_TIME
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_role_authority.CREATE_USER
*
* @return the value of cms_role_authority.CREATE_USER
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_role_authority.CREATE_USER
*
* @param createUser the value for cms_role_authority.CREATE_USER
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_role_authority.UPDATE_USER
*
* @return the value of cms_role_authority.UPDATE_USER
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_role_authority.UPDATE_USER
*
* @param updateUser the value for cms_role_authority.UPDATE_USER
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_role_authority.UPDATE_DATE
*
* @return the value of cms_role_authority.UPDATE_DATE
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_role_authority.UPDATE_DATE
*
* @param updateDate the value for cms_role_authority.UPDATE_DATE
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_role_authority.UPDATE_TIME
*
* @return the value of cms_role_authority.UPDATE_TIME
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_role_authority.UPDATE_TIME
*
* @param updateTime the value for cms_role_authority.UPDATE_TIME
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
}

View File

@ -0,0 +1,862 @@
package com.ruoyi.content.domain;
import java.util.ArrayList;
import java.util.List;
public class CmsRoleAuthorityExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public CmsRoleAuthorityExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andSelfChildIsNull() {
addCriterion("SELF_CHILD is null");
return (Criteria) this;
}
public Criteria andSelfChildIsNotNull() {
addCriterion("SELF_CHILD is not null");
return (Criteria) this;
}
public Criteria andSelfChildEqualTo(String value) {
addCriterion("SELF_CHILD =", value, "selfChild");
return (Criteria) this;
}
public Criteria andSelfChildNotEqualTo(String value) {
addCriterion("SELF_CHILD <>", value, "selfChild");
return (Criteria) this;
}
public Criteria andSelfChildGreaterThan(String value) {
addCriterion("SELF_CHILD >", value, "selfChild");
return (Criteria) this;
}
public Criteria andSelfChildGreaterThanOrEqualTo(String value) {
addCriterion("SELF_CHILD >=", value, "selfChild");
return (Criteria) this;
}
public Criteria andSelfChildLessThan(String value) {
addCriterion("SELF_CHILD <", value, "selfChild");
return (Criteria) this;
}
public Criteria andSelfChildLessThanOrEqualTo(String value) {
addCriterion("SELF_CHILD <=", value, "selfChild");
return (Criteria) this;
}
public Criteria andSelfChildLike(String value) {
addCriterion("SELF_CHILD like", value, "selfChild");
return (Criteria) this;
}
public Criteria andSelfChildNotLike(String value) {
addCriterion("SELF_CHILD not like", value, "selfChild");
return (Criteria) this;
}
public Criteria andSelfChildIn(List<String> values) {
addCriterion("SELF_CHILD in", values, "selfChild");
return (Criteria) this;
}
public Criteria andSelfChildNotIn(List<String> values) {
addCriterion("SELF_CHILD not in", values, "selfChild");
return (Criteria) this;
}
public Criteria andSelfChildBetween(String value1, String value2) {
addCriterion("SELF_CHILD between", value1, value2, "selfChild");
return (Criteria) this;
}
public Criteria andSelfChildNotBetween(String value1, String value2) {
addCriterion("SELF_CHILD not between", value1, value2, "selfChild");
return (Criteria) this;
}
public Criteria andParentChildIsNull() {
addCriterion("PARENT_CHILD is null");
return (Criteria) this;
}
public Criteria andParentChildIsNotNull() {
addCriterion("PARENT_CHILD is not null");
return (Criteria) this;
}
public Criteria andParentChildEqualTo(String value) {
addCriterion("PARENT_CHILD =", value, "parentChild");
return (Criteria) this;
}
public Criteria andParentChildNotEqualTo(String value) {
addCriterion("PARENT_CHILD <>", value, "parentChild");
return (Criteria) this;
}
public Criteria andParentChildGreaterThan(String value) {
addCriterion("PARENT_CHILD >", value, "parentChild");
return (Criteria) this;
}
public Criteria andParentChildGreaterThanOrEqualTo(String value) {
addCriterion("PARENT_CHILD >=", value, "parentChild");
return (Criteria) this;
}
public Criteria andParentChildLessThan(String value) {
addCriterion("PARENT_CHILD <", value, "parentChild");
return (Criteria) this;
}
public Criteria andParentChildLessThanOrEqualTo(String value) {
addCriterion("PARENT_CHILD <=", value, "parentChild");
return (Criteria) this;
}
public Criteria andParentChildLike(String value) {
addCriterion("PARENT_CHILD like", value, "parentChild");
return (Criteria) this;
}
public Criteria andParentChildNotLike(String value) {
addCriterion("PARENT_CHILD not like", value, "parentChild");
return (Criteria) this;
}
public Criteria andParentChildIn(List<String> values) {
addCriterion("PARENT_CHILD in", values, "parentChild");
return (Criteria) this;
}
public Criteria andParentChildNotIn(List<String> values) {
addCriterion("PARENT_CHILD not in", values, "parentChild");
return (Criteria) this;
}
public Criteria andParentChildBetween(String value1, String value2) {
addCriterion("PARENT_CHILD between", value1, value2, "parentChild");
return (Criteria) this;
}
public Criteria andParentChildNotBetween(String value1, String value2) {
addCriterion("PARENT_CHILD not between", value1, value2, "parentChild");
return (Criteria) this;
}
public Criteria andCreateDateIsNull() {
addCriterion("CREATE_DATE is null");
return (Criteria) this;
}
public Criteria andCreateDateIsNotNull() {
addCriterion("CREATE_DATE is not null");
return (Criteria) this;
}
public Criteria andCreateDateEqualTo(String value) {
addCriterion("CREATE_DATE =", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotEqualTo(String value) {
addCriterion("CREATE_DATE <>", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateGreaterThan(String value) {
addCriterion("CREATE_DATE >", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_DATE >=", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLessThan(String value) {
addCriterion("CREATE_DATE <", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLessThanOrEqualTo(String value) {
addCriterion("CREATE_DATE <=", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLike(String value) {
addCriterion("CREATE_DATE like", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotLike(String value) {
addCriterion("CREATE_DATE not like", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateIn(List<String> values) {
addCriterion("CREATE_DATE in", values, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotIn(List<String> values) {
addCriterion("CREATE_DATE not in", values, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateBetween(String value1, String value2) {
addCriterion("CREATE_DATE between", value1, value2, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotBetween(String value1, String value2) {
addCriterion("CREATE_DATE not between", value1, value2, "createDate");
return (Criteria) this;
}
public Criteria andCreateTimeIsNull() {
addCriterion("CREATE_TIME is null");
return (Criteria) this;
}
public Criteria andCreateTimeIsNotNull() {
addCriterion("CREATE_TIME is not null");
return (Criteria) this;
}
public Criteria andCreateTimeEqualTo(String value) {
addCriterion("CREATE_TIME =", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotEqualTo(String value) {
addCriterion("CREATE_TIME <>", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThan(String value) {
addCriterion("CREATE_TIME >", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_TIME >=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThan(String value) {
addCriterion("CREATE_TIME <", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThanOrEqualTo(String value) {
addCriterion("CREATE_TIME <=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLike(String value) {
addCriterion("CREATE_TIME like", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotLike(String value) {
addCriterion("CREATE_TIME not like", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeIn(List<String> values) {
addCriterion("CREATE_TIME in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotIn(List<String> values) {
addCriterion("CREATE_TIME not in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeBetween(String value1, String value2) {
addCriterion("CREATE_TIME between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotBetween(String value1, String value2) {
addCriterion("CREATE_TIME not between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateUserIsNull() {
addCriterion("CREATE_USER is null");
return (Criteria) this;
}
public Criteria andCreateUserIsNotNull() {
addCriterion("CREATE_USER is not null");
return (Criteria) this;
}
public Criteria andCreateUserEqualTo(String value) {
addCriterion("CREATE_USER =", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotEqualTo(String value) {
addCriterion("CREATE_USER <>", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserGreaterThan(String value) {
addCriterion("CREATE_USER >", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_USER >=", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLessThan(String value) {
addCriterion("CREATE_USER <", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLessThanOrEqualTo(String value) {
addCriterion("CREATE_USER <=", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLike(String value) {
addCriterion("CREATE_USER like", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotLike(String value) {
addCriterion("CREATE_USER not like", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserIn(List<String> values) {
addCriterion("CREATE_USER in", values, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotIn(List<String> values) {
addCriterion("CREATE_USER not in", values, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserBetween(String value1, String value2) {
addCriterion("CREATE_USER between", value1, value2, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotBetween(String value1, String value2) {
addCriterion("CREATE_USER not between", value1, value2, "createUser");
return (Criteria) this;
}
public Criteria andUpdateUserIsNull() {
addCriterion("UPDATE_USER is null");
return (Criteria) this;
}
public Criteria andUpdateUserIsNotNull() {
addCriterion("UPDATE_USER is not null");
return (Criteria) this;
}
public Criteria andUpdateUserEqualTo(String value) {
addCriterion("UPDATE_USER =", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotEqualTo(String value) {
addCriterion("UPDATE_USER <>", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserGreaterThan(String value) {
addCriterion("UPDATE_USER >", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_USER >=", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLessThan(String value) {
addCriterion("UPDATE_USER <", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLessThanOrEqualTo(String value) {
addCriterion("UPDATE_USER <=", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLike(String value) {
addCriterion("UPDATE_USER like", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotLike(String value) {
addCriterion("UPDATE_USER not like", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserIn(List<String> values) {
addCriterion("UPDATE_USER in", values, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotIn(List<String> values) {
addCriterion("UPDATE_USER not in", values, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserBetween(String value1, String value2) {
addCriterion("UPDATE_USER between", value1, value2, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotBetween(String value1, String value2) {
addCriterion("UPDATE_USER not between", value1, value2, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateDateIsNull() {
addCriterion("UPDATE_DATE is null");
return (Criteria) this;
}
public Criteria andUpdateDateIsNotNull() {
addCriterion("UPDATE_DATE is not null");
return (Criteria) this;
}
public Criteria andUpdateDateEqualTo(String value) {
addCriterion("UPDATE_DATE =", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotEqualTo(String value) {
addCriterion("UPDATE_DATE <>", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThan(String value) {
addCriterion("UPDATE_DATE >", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_DATE >=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThan(String value) {
addCriterion("UPDATE_DATE <", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThanOrEqualTo(String value) {
addCriterion("UPDATE_DATE <=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLike(String value) {
addCriterion("UPDATE_DATE like", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotLike(String value) {
addCriterion("UPDATE_DATE not like", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateIn(List<String> values) {
addCriterion("UPDATE_DATE in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotIn(List<String> values) {
addCriterion("UPDATE_DATE not in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateBetween(String value1, String value2) {
addCriterion("UPDATE_DATE between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotBetween(String value1, String value2) {
addCriterion("UPDATE_DATE not between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNull() {
addCriterion("UPDATE_TIME is null");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNotNull() {
addCriterion("UPDATE_TIME is not null");
return (Criteria) this;
}
public Criteria andUpdateTimeEqualTo(String value) {
addCriterion("UPDATE_TIME =", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotEqualTo(String value) {
addCriterion("UPDATE_TIME <>", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThan(String value) {
addCriterion("UPDATE_TIME >", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_TIME >=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThan(String value) {
addCriterion("UPDATE_TIME <", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThanOrEqualTo(String value) {
addCriterion("UPDATE_TIME <=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLike(String value) {
addCriterion("UPDATE_TIME like", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotLike(String value) {
addCriterion("UPDATE_TIME not like", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeIn(List<String> values) {
addCriterion("UPDATE_TIME in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotIn(List<String> values) {
addCriterion("UPDATE_TIME not in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeBetween(String value1, String value2) {
addCriterion("UPDATE_TIME between", value1, value2, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotBetween(String value1, String value2) {
addCriterion("UPDATE_TIME not between", value1, value2, "updateTime");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table cms_role_authority
*
* @mbggenerated do_not_delete_during_merge Tue Jul 24 18:17:00 CST 2018
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table cms_role_authority
*
* @mbggenerated Tue Jul 24 18:17:00 CST 2018
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}

View File

@ -0,0 +1,387 @@
package com.ruoyi.content.domain;
public class CmsSysAuthority {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.NUM
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private Integer num;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.ID
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String id;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.LEVEL
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String level;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.TYPE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String type;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.OPERATOR_ROLE_NAME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String operatorRoleName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.OPERATOR_ROLE_PATH
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String operatorRolePath;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.CREATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.CREATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.CREATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.UPDATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.UPDATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String updateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_authority.UPDATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String updateUser;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_authority.NUM
*
* @return the value of cms_sys_authority.NUM
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public Integer getNum() {
return num;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.NUM
*
* @param num the value for cms_sys_authority.NUM
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setNum(Integer num) {
this.num = num;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_authority.ID
*
* @return the value of cms_sys_authority.ID
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.ID
*
* @param id the value for cms_sys_authority.ID
*
* @mbggenerated Thu Aug 17 17:24:12 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 cms_sys_authority.LEVEL
*
* @return the value of cms_sys_authority.LEVEL
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getLevel() {
return level;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.LEVEL
*
* @param level the value for cms_sys_authority.LEVEL
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setLevel(String level) {
this.level = level;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_authority.TYPE
*
* @return the value of cms_sys_authority.TYPE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getType() {
return type;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.TYPE
*
* @param type the value for cms_sys_authority.TYPE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setType(String type) {
this.type = type;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_authority.OPERATOR_ROLE_NAME
*
* @return the value of cms_sys_authority.OPERATOR_ROLE_NAME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getOperatorRoleName() {
return operatorRoleName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.OPERATOR_ROLE_NAME
*
* @param operatorRoleName the value for cms_sys_authority.OPERATOR_ROLE_NAME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setOperatorRoleName(String operatorRoleName) {
this.operatorRoleName = operatorRoleName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_authority.OPERATOR_ROLE_PATH
*
* @return the value of cms_sys_authority.OPERATOR_ROLE_PATH
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getOperatorRolePath() {
return operatorRolePath;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.OPERATOR_ROLE_PATH
*
* @param operatorRolePath the value for cms_sys_authority.OPERATOR_ROLE_PATH
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setOperatorRolePath(String operatorRolePath) {
this.operatorRolePath = operatorRolePath;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_authority.CREATE_DATE
*
* @return the value of cms_sys_authority.CREATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.CREATE_DATE
*
* @param createDate the value for cms_sys_authority.CREATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_authority.CREATE_TIME
*
* @return the value of cms_sys_authority.CREATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.CREATE_TIME
*
* @param createTime the value for cms_sys_authority.CREATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_authority.CREATE_USER
*
* @return the value of cms_sys_authority.CREATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.CREATE_USER
*
* @param createUser the value for cms_sys_authority.CREATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_authority.UPDATE_DATE
*
* @return the value of cms_sys_authority.UPDATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.UPDATE_DATE
*
* @param updateDate the value for cms_sys_authority.UPDATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_authority.UPDATE_TIME
*
* @return the value of cms_sys_authority.UPDATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.UPDATE_TIME
*
* @param updateTime the value for cms_sys_authority.UPDATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_authority.UPDATE_USER
*
* @return the value of cms_sys_authority.UPDATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_authority.UPDATE_USER
*
* @param updateUser the value for cms_sys_authority.UPDATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,259 @@
package com.ruoyi.content.domain;
public class CmsSysRole {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_role.ID
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private Integer id;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_role.NAME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String name;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_role.CREATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_role.CREATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_role.CREATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_role.UPDATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_role.UPDATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_role.UPDATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
private String updateTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_role.ID
*
* @return the value of cms_sys_role.ID
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public Integer getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_role.ID
*
* @param id the value for cms_sys_role.ID
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setId(Integer id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_role.NAME
*
* @return the value of cms_sys_role.NAME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getName() {
return name;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_role.NAME
*
* @param name the value for cms_sys_role.NAME
*
* @mbggenerated Thu Aug 17 17:24:12 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 cms_sys_role.CREATE_USER
*
* @return the value of cms_sys_role.CREATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_role.CREATE_USER
*
* @param createUser the value for cms_sys_role.CREATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_role.CREATE_DATE
*
* @return the value of cms_sys_role.CREATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_role.CREATE_DATE
*
* @param createDate the value for cms_sys_role.CREATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_role.CREATE_TIME
*
* @return the value of cms_sys_role.CREATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_role.CREATE_TIME
*
* @param createTime the value for cms_sys_role.CREATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_role.UPDATE_USER
*
* @return the value of cms_sys_role.UPDATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_role.UPDATE_USER
*
* @param updateUser the value for cms_sys_role.UPDATE_USER
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_role.UPDATE_DATE
*
* @return the value of cms_sys_role.UPDATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_role.UPDATE_DATE
*
* @param updateDate the value for cms_sys_role.UPDATE_DATE
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_role.UPDATE_TIME
*
* @return the value of cms_sys_role.UPDATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_role.UPDATE_TIME
*
* @param updateTime the value for cms_sys_role.UPDATE_TIME
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
}

View File

@ -0,0 +1,68 @@
package com.ruoyi.content.domain;
public class CmsSysRoleAuthorDto {
private String id;
private String operatorRoleName;
private String isHave;
private String num;
private String level;
private String type;
private String operatorRolePath;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getOperatorRoleName() {
return operatorRoleName;
}
public void setOperatorRoleName(String operatorRoleName) {
this.operatorRoleName = operatorRoleName;
}
public String getIsHave() {
return isHave;
}
public void setIsHave(String isHave) {
this.isHave = isHave;
}
public String getNum() {
return num;
}
public void setNum(String num) {
this.num = num;
}
public String getLevel() {
return level;
}
public void setLevel(String level) {
this.level = level;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getOperatorRolePath() {
return operatorRolePath;
}
public void setOperatorRolePath(String operatorRolePath) {
this.operatorRolePath = operatorRolePath;
}
}

View File

@ -0,0 +1,852 @@
package com.ruoyi.content.domain;
import java.util.ArrayList;
import java.util.List;
public class CmsSysRoleExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public CmsSysRoleExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIdIsNull() {
addCriterion("ID is null");
return (Criteria) this;
}
public Criteria andIdIsNotNull() {
addCriterion("ID is not null");
return (Criteria) this;
}
public Criteria andIdEqualTo(Integer value) {
addCriterion("ID =", value, "id");
return (Criteria) this;
}
public Criteria andIdNotEqualTo(Integer value) {
addCriterion("ID <>", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThan(Integer value) {
addCriterion("ID >", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThanOrEqualTo(Integer value) {
addCriterion("ID >=", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThan(Integer value) {
addCriterion("ID <", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThanOrEqualTo(Integer value) {
addCriterion("ID <=", value, "id");
return (Criteria) this;
}
public Criteria andIdIn(List<Integer> values) {
addCriterion("ID in", values, "id");
return (Criteria) this;
}
public Criteria andIdNotIn(List<Integer> values) {
addCriterion("ID not in", values, "id");
return (Criteria) this;
}
public Criteria andIdBetween(Integer value1, Integer value2) {
addCriterion("ID between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andIdNotBetween(Integer value1, Integer value2) {
addCriterion("ID not between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andNameIsNull() {
addCriterion("NAME is null");
return (Criteria) this;
}
public Criteria andNameIsNotNull() {
addCriterion("NAME is not null");
return (Criteria) this;
}
public Criteria andNameEqualTo(String value) {
addCriterion("NAME =", value, "name");
return (Criteria) this;
}
public Criteria andNameNotEqualTo(String value) {
addCriterion("NAME <>", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThan(String value) {
addCriterion("NAME >", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThanOrEqualTo(String value) {
addCriterion("NAME >=", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThan(String value) {
addCriterion("NAME <", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThanOrEqualTo(String value) {
addCriterion("NAME <=", value, "name");
return (Criteria) this;
}
public Criteria andNameLike(String value) {
addCriterion("NAME like", value, "name");
return (Criteria) this;
}
public Criteria andNameNotLike(String value) {
addCriterion("NAME not like", value, "name");
return (Criteria) this;
}
public Criteria andNameIn(List<String> values) {
addCriterion("NAME in", values, "name");
return (Criteria) this;
}
public Criteria andNameNotIn(List<String> values) {
addCriterion("NAME not in", values, "name");
return (Criteria) this;
}
public Criteria andNameBetween(String value1, String value2) {
addCriterion("NAME between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andNameNotBetween(String value1, String value2) {
addCriterion("NAME not between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andCreateUserIsNull() {
addCriterion("CREATE_USER is null");
return (Criteria) this;
}
public Criteria andCreateUserIsNotNull() {
addCriterion("CREATE_USER is not null");
return (Criteria) this;
}
public Criteria andCreateUserEqualTo(String value) {
addCriterion("CREATE_USER =", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotEqualTo(String value) {
addCriterion("CREATE_USER <>", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserGreaterThan(String value) {
addCriterion("CREATE_USER >", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_USER >=", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLessThan(String value) {
addCriterion("CREATE_USER <", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLessThanOrEqualTo(String value) {
addCriterion("CREATE_USER <=", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLike(String value) {
addCriterion("CREATE_USER like", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotLike(String value) {
addCriterion("CREATE_USER not like", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserIn(List<String> values) {
addCriterion("CREATE_USER in", values, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotIn(List<String> values) {
addCriterion("CREATE_USER not in", values, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserBetween(String value1, String value2) {
addCriterion("CREATE_USER between", value1, value2, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotBetween(String value1, String value2) {
addCriterion("CREATE_USER not between", value1, value2, "createUser");
return (Criteria) this;
}
public Criteria andCreateDateIsNull() {
addCriterion("CREATE_DATE is null");
return (Criteria) this;
}
public Criteria andCreateDateIsNotNull() {
addCriterion("CREATE_DATE is not null");
return (Criteria) this;
}
public Criteria andCreateDateEqualTo(String value) {
addCriterion("CREATE_DATE =", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotEqualTo(String value) {
addCriterion("CREATE_DATE <>", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateGreaterThan(String value) {
addCriterion("CREATE_DATE >", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_DATE >=", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLessThan(String value) {
addCriterion("CREATE_DATE <", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLessThanOrEqualTo(String value) {
addCriterion("CREATE_DATE <=", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLike(String value) {
addCriterion("CREATE_DATE like", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotLike(String value) {
addCriterion("CREATE_DATE not like", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateIn(List<String> values) {
addCriterion("CREATE_DATE in", values, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotIn(List<String> values) {
addCriterion("CREATE_DATE not in", values, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateBetween(String value1, String value2) {
addCriterion("CREATE_DATE between", value1, value2, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotBetween(String value1, String value2) {
addCriterion("CREATE_DATE not between", value1, value2, "createDate");
return (Criteria) this;
}
public Criteria andCreateTimeIsNull() {
addCriterion("CREATE_TIME is null");
return (Criteria) this;
}
public Criteria andCreateTimeIsNotNull() {
addCriterion("CREATE_TIME is not null");
return (Criteria) this;
}
public Criteria andCreateTimeEqualTo(String value) {
addCriterion("CREATE_TIME =", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotEqualTo(String value) {
addCriterion("CREATE_TIME <>", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThan(String value) {
addCriterion("CREATE_TIME >", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_TIME >=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThan(String value) {
addCriterion("CREATE_TIME <", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThanOrEqualTo(String value) {
addCriterion("CREATE_TIME <=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLike(String value) {
addCriterion("CREATE_TIME like", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotLike(String value) {
addCriterion("CREATE_TIME not like", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeIn(List<String> values) {
addCriterion("CREATE_TIME in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotIn(List<String> values) {
addCriterion("CREATE_TIME not in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeBetween(String value1, String value2) {
addCriterion("CREATE_TIME between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotBetween(String value1, String value2) {
addCriterion("CREATE_TIME not between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andUpdateUserIsNull() {
addCriterion("UPDATE_USER is null");
return (Criteria) this;
}
public Criteria andUpdateUserIsNotNull() {
addCriterion("UPDATE_USER is not null");
return (Criteria) this;
}
public Criteria andUpdateUserEqualTo(String value) {
addCriterion("UPDATE_USER =", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotEqualTo(String value) {
addCriterion("UPDATE_USER <>", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserGreaterThan(String value) {
addCriterion("UPDATE_USER >", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_USER >=", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLessThan(String value) {
addCriterion("UPDATE_USER <", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLessThanOrEqualTo(String value) {
addCriterion("UPDATE_USER <=", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLike(String value) {
addCriterion("UPDATE_USER like", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotLike(String value) {
addCriterion("UPDATE_USER not like", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserIn(List<String> values) {
addCriterion("UPDATE_USER in", values, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotIn(List<String> values) {
addCriterion("UPDATE_USER not in", values, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserBetween(String value1, String value2) {
addCriterion("UPDATE_USER between", value1, value2, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotBetween(String value1, String value2) {
addCriterion("UPDATE_USER not between", value1, value2, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateDateIsNull() {
addCriterion("UPDATE_DATE is null");
return (Criteria) this;
}
public Criteria andUpdateDateIsNotNull() {
addCriterion("UPDATE_DATE is not null");
return (Criteria) this;
}
public Criteria andUpdateDateEqualTo(String value) {
addCriterion("UPDATE_DATE =", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotEqualTo(String value) {
addCriterion("UPDATE_DATE <>", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThan(String value) {
addCriterion("UPDATE_DATE >", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_DATE >=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThan(String value) {
addCriterion("UPDATE_DATE <", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThanOrEqualTo(String value) {
addCriterion("UPDATE_DATE <=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLike(String value) {
addCriterion("UPDATE_DATE like", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotLike(String value) {
addCriterion("UPDATE_DATE not like", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateIn(List<String> values) {
addCriterion("UPDATE_DATE in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotIn(List<String> values) {
addCriterion("UPDATE_DATE not in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateBetween(String value1, String value2) {
addCriterion("UPDATE_DATE between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotBetween(String value1, String value2) {
addCriterion("UPDATE_DATE not between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNull() {
addCriterion("UPDATE_TIME is null");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNotNull() {
addCriterion("UPDATE_TIME is not null");
return (Criteria) this;
}
public Criteria andUpdateTimeEqualTo(String value) {
addCriterion("UPDATE_TIME =", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotEqualTo(String value) {
addCriterion("UPDATE_TIME <>", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThan(String value) {
addCriterion("UPDATE_TIME >", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_TIME >=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThan(String value) {
addCriterion("UPDATE_TIME <", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThanOrEqualTo(String value) {
addCriterion("UPDATE_TIME <=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLike(String value) {
addCriterion("UPDATE_TIME like", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotLike(String value) {
addCriterion("UPDATE_TIME not like", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeIn(List<String> values) {
addCriterion("UPDATE_TIME in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotIn(List<String> values) {
addCriterion("UPDATE_TIME not in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeBetween(String value1, String value2) {
addCriterion("UPDATE_TIME between", value1, value2, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotBetween(String value1, String value2) {
addCriterion("UPDATE_TIME not between", value1, value2, "updateTime");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table cms_sys_role
*
* @mbggenerated do_not_delete_during_merge Thu Aug 17 17:24:12 CST 2017
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table cms_sys_role
*
* @mbggenerated Thu Aug 17 17:24:12 CST 2017
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}

View File

@ -0,0 +1,611 @@
package com.ruoyi.content.domain;
public class CmsSysUser {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.EMAIL
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String email;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.OPEN_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String openId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.PWD
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String pwd;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.SALT
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String salt;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.USER_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String userId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.JOB_NUMBER
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String jobNumber;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.COMPANY_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.BRANCH_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String branchId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.NAME
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String name;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.SEX
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String sex;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.PHONE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String phone;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.STATE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String state;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.CREATE_USER
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.CREATE_DATE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.CREATE_TIME
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.UPDATE_USER
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.UPDATE_DATE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.UPDATE_TIME
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String updateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_sys_user.UPDATE_REMARK
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
private String updateRemark;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.EMAIL
*
* @return the value of cms_sys_user.EMAIL
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getEmail() {
return email;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.EMAIL
*
* @param email the value for cms_sys_user.EMAIL
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setEmail(String email) {
this.email = email;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.OPEN_ID
*
* @return the value of cms_sys_user.OPEN_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getOpenId() {
return openId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.OPEN_ID
*
* @param openId the value for cms_sys_user.OPEN_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setOpenId(String openId) {
this.openId = openId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.PWD
*
* @return the value of cms_sys_user.PWD
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getPwd() {
return pwd;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.PWD
*
* @param pwd the value for cms_sys_user.PWD
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setPwd(String pwd) {
this.pwd = pwd;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.SALT
*
* @return the value of cms_sys_user.SALT
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getSalt() {
return salt;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.SALT
*
* @param salt the value for cms_sys_user.SALT
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setSalt(String salt) {
this.salt = salt;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.USER_ID
*
* @return the value of cms_sys_user.USER_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getUserId() {
return userId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.USER_ID
*
* @param userId the value for cms_sys_user.USER_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setUserId(String userId) {
this.userId = userId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.JOB_NUMBER
*
* @return the value of cms_sys_user.JOB_NUMBER
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getJobNumber() {
return jobNumber;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.JOB_NUMBER
*
* @param jobNumber the value for cms_sys_user.JOB_NUMBER
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setJobNumber(String jobNumber) {
this.jobNumber = jobNumber;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.COMPANY_ID
*
* @return the value of cms_sys_user.COMPANY_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.COMPANY_ID
*
* @param companyId the value for cms_sys_user.COMPANY_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.BRANCH_ID
*
* @return the value of cms_sys_user.BRANCH_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getBranchId() {
return branchId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.BRANCH_ID
*
* @param branchId the value for cms_sys_user.BRANCH_ID
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setBranchId(String branchId) {
this.branchId = branchId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.NAME
*
* @return the value of cms_sys_user.NAME
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getName() {
return name;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.NAME
*
* @param name the value for cms_sys_user.NAME
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setName(String name) {
this.name = name;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.SEX
*
* @return the value of cms_sys_user.SEX
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getSex() {
return sex;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.SEX
*
* @param sex the value for cms_sys_user.SEX
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setSex(String sex) {
this.sex = sex;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.PHONE
*
* @return the value of cms_sys_user.PHONE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getPhone() {
return phone;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.PHONE
*
* @param phone the value for cms_sys_user.PHONE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setPhone(String phone) {
this.phone = phone;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.STATE
*
* @return the value of cms_sys_user.STATE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getState() {
return state;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.STATE
*
* @param state the value for cms_sys_user.STATE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setState(String state) {
this.state = state;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.CREATE_USER
*
* @return the value of cms_sys_user.CREATE_USER
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.CREATE_USER
*
* @param createUser the value for cms_sys_user.CREATE_USER
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.CREATE_DATE
*
* @return the value of cms_sys_user.CREATE_DATE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.CREATE_DATE
*
* @param createDate the value for cms_sys_user.CREATE_DATE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.CREATE_TIME
*
* @return the value of cms_sys_user.CREATE_TIME
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.CREATE_TIME
*
* @param createTime the value for cms_sys_user.CREATE_TIME
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.UPDATE_USER
*
* @return the value of cms_sys_user.UPDATE_USER
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.UPDATE_USER
*
* @param updateUser the value for cms_sys_user.UPDATE_USER
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.UPDATE_DATE
*
* @return the value of cms_sys_user.UPDATE_DATE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.UPDATE_DATE
*
* @param updateDate the value for cms_sys_user.UPDATE_DATE
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.UPDATE_TIME
*
* @return the value of cms_sys_user.UPDATE_TIME
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.UPDATE_TIME
*
* @param updateTime the value for cms_sys_user.UPDATE_TIME
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_sys_user.UPDATE_REMARK
*
* @return the value of cms_sys_user.UPDATE_REMARK
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public String getUpdateRemark() {
return updateRemark;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_sys_user.UPDATE_REMARK
*
* @param updateRemark the value for cms_sys_user.UPDATE_REMARK
*
* @mbggenerated Tue Aug 28 09:28:51 CST 2018
*/
public void setUpdateRemark(String updateRemark) {
this.updateRemark = updateRemark;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,32 @@
package com.ruoyi.content.domain;
public class CmsUSerSysRoleDto {
private String name;
private String isHave;
private String id;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getIsHave() {
return isHave;
}
public void setIsHave(String isHave) {
this.isHave = isHave;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}

View File

@ -0,0 +1,291 @@
package com.ruoyi.content.domain;
public class CmsUserRole {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_user_role.ID
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
private Integer id;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_user_role.AUTHORITY_NAME
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
private String authorityName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_user_role.AUTHORITY_EMAIL
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
private String authorityEmail;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_user_role.CREATE_USER
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_user_role.CREATE_DATE
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_user_role.CREATE_TIME
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_user_role.UPDATE_USER
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_user_role.UPDATE_DATE
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column cms_user_role.UPDATE_TIME
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
private String updateTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_user_role.ID
*
* @return the value of cms_user_role.ID
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public Integer getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_user_role.ID
*
* @param id the value for cms_user_role.ID
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void setId(Integer id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_user_role.AUTHORITY_NAME
*
* @return the value of cms_user_role.AUTHORITY_NAME
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public String getAuthorityName() {
return authorityName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_user_role.AUTHORITY_NAME
*
* @param authorityName the value for cms_user_role.AUTHORITY_NAME
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void setAuthorityName(String authorityName) {
this.authorityName = authorityName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_user_role.AUTHORITY_EMAIL
*
* @return the value of cms_user_role.AUTHORITY_EMAIL
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public String getAuthorityEmail() {
return authorityEmail;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_user_role.AUTHORITY_EMAIL
*
* @param authorityEmail the value for cms_user_role.AUTHORITY_EMAIL
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void setAuthorityEmail(String authorityEmail) {
this.authorityEmail = authorityEmail;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_user_role.CREATE_USER
*
* @return the value of cms_user_role.CREATE_USER
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_user_role.CREATE_USER
*
* @param createUser the value for cms_user_role.CREATE_USER
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_user_role.CREATE_DATE
*
* @return the value of cms_user_role.CREATE_DATE
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_user_role.CREATE_DATE
*
* @param createDate the value for cms_user_role.CREATE_DATE
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_user_role.CREATE_TIME
*
* @return the value of cms_user_role.CREATE_TIME
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_user_role.CREATE_TIME
*
* @param createTime the value for cms_user_role.CREATE_TIME
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_user_role.UPDATE_USER
*
* @return the value of cms_user_role.UPDATE_USER
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_user_role.UPDATE_USER
*
* @param updateUser the value for cms_user_role.UPDATE_USER
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_user_role.UPDATE_DATE
*
* @return the value of cms_user_role.UPDATE_DATE
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_user_role.UPDATE_DATE
*
* @param updateDate the value for cms_user_role.UPDATE_DATE
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column cms_user_role.UPDATE_TIME
*
* @return the value of cms_user_role.UPDATE_TIME
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column cms_user_role.UPDATE_TIME
*
* @param updateTime the value for cms_user_role.UPDATE_TIME
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
}

View File

@ -0,0 +1,922 @@
package com.ruoyi.content.domain;
import java.util.ArrayList;
import java.util.List;
public class CmsUserRoleExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public CmsUserRoleExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIdIsNull() {
addCriterion("ID is null");
return (Criteria) this;
}
public Criteria andIdIsNotNull() {
addCriterion("ID is not null");
return (Criteria) this;
}
public Criteria andIdEqualTo(Integer value) {
addCriterion("ID =", value, "id");
return (Criteria) this;
}
public Criteria andIdNotEqualTo(Integer value) {
addCriterion("ID <>", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThan(Integer value) {
addCriterion("ID >", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThanOrEqualTo(Integer value) {
addCriterion("ID >=", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThan(Integer value) {
addCriterion("ID <", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThanOrEqualTo(Integer value) {
addCriterion("ID <=", value, "id");
return (Criteria) this;
}
public Criteria andIdIn(List<Integer> values) {
addCriterion("ID in", values, "id");
return (Criteria) this;
}
public Criteria andIdNotIn(List<Integer> values) {
addCriterion("ID not in", values, "id");
return (Criteria) this;
}
public Criteria andIdBetween(Integer value1, Integer value2) {
addCriterion("ID between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andIdNotBetween(Integer value1, Integer value2) {
addCriterion("ID not between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andAuthorityNameIsNull() {
addCriterion("AUTHORITY_NAME is null");
return (Criteria) this;
}
public Criteria andAuthorityNameIsNotNull() {
addCriterion("AUTHORITY_NAME is not null");
return (Criteria) this;
}
public Criteria andAuthorityNameEqualTo(String value) {
addCriterion("AUTHORITY_NAME =", value, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityNameNotEqualTo(String value) {
addCriterion("AUTHORITY_NAME <>", value, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityNameGreaterThan(String value) {
addCriterion("AUTHORITY_NAME >", value, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityNameGreaterThanOrEqualTo(String value) {
addCriterion("AUTHORITY_NAME >=", value, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityNameLessThan(String value) {
addCriterion("AUTHORITY_NAME <", value, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityNameLessThanOrEqualTo(String value) {
addCriterion("AUTHORITY_NAME <=", value, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityNameLike(String value) {
addCriterion("AUTHORITY_NAME like", value, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityNameNotLike(String value) {
addCriterion("AUTHORITY_NAME not like", value, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityNameIn(List<String> values) {
addCriterion("AUTHORITY_NAME in", values, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityNameNotIn(List<String> values) {
addCriterion("AUTHORITY_NAME not in", values, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityNameBetween(String value1, String value2) {
addCriterion("AUTHORITY_NAME between", value1, value2, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityNameNotBetween(String value1, String value2) {
addCriterion("AUTHORITY_NAME not between", value1, value2, "authorityName");
return (Criteria) this;
}
public Criteria andAuthorityEmailIsNull() {
addCriterion("AUTHORITY_EMAIL is null");
return (Criteria) this;
}
public Criteria andAuthorityEmailIsNotNull() {
addCriterion("AUTHORITY_EMAIL is not null");
return (Criteria) this;
}
public Criteria andAuthorityEmailEqualTo(String value) {
addCriterion("AUTHORITY_EMAIL =", value, "authorityEmail");
return (Criteria) this;
}
public Criteria andAuthorityEmailNotEqualTo(String value) {
addCriterion("AUTHORITY_EMAIL <>", value, "authorityEmail");
return (Criteria) this;
}
public Criteria andAuthorityEmailGreaterThan(String value) {
addCriterion("AUTHORITY_EMAIL >", value, "authorityEmail");
return (Criteria) this;
}
public Criteria andAuthorityEmailGreaterThanOrEqualTo(String value) {
addCriterion("AUTHORITY_EMAIL >=", value, "authorityEmail");
return (Criteria) this;
}
public Criteria andAuthorityEmailLessThan(String value) {
addCriterion("AUTHORITY_EMAIL <", value, "authorityEmail");
return (Criteria) this;
}
public Criteria andAuthorityEmailLessThanOrEqualTo(String value) {
addCriterion("AUTHORITY_EMAIL <=", value, "authorityEmail");
return (Criteria) this;
}
public Criteria andAuthorityEmailLike(String value) {
addCriterion("AUTHORITY_EMAIL like", value, "authorityEmail");
return (Criteria) this;
}
public Criteria andAuthorityEmailNotLike(String value) {
addCriterion("AUTHORITY_EMAIL not like", value, "authorityEmail");
return (Criteria) this;
}
public Criteria andAuthorityEmailIn(List<String> values) {
addCriterion("AUTHORITY_EMAIL in", values, "authorityEmail");
return (Criteria) this;
}
public Criteria andAuthorityEmailNotIn(List<String> values) {
addCriterion("AUTHORITY_EMAIL not in", values, "authorityEmail");
return (Criteria) this;
}
public Criteria andAuthorityEmailBetween(String value1, String value2) {
addCriterion("AUTHORITY_EMAIL between", value1, value2, "authorityEmail");
return (Criteria) this;
}
public Criteria andAuthorityEmailNotBetween(String value1, String value2) {
addCriterion("AUTHORITY_EMAIL not between", value1, value2, "authorityEmail");
return (Criteria) this;
}
public Criteria andCreateUserIsNull() {
addCriterion("CREATE_USER is null");
return (Criteria) this;
}
public Criteria andCreateUserIsNotNull() {
addCriterion("CREATE_USER is not null");
return (Criteria) this;
}
public Criteria andCreateUserEqualTo(String value) {
addCriterion("CREATE_USER =", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotEqualTo(String value) {
addCriterion("CREATE_USER <>", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserGreaterThan(String value) {
addCriterion("CREATE_USER >", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_USER >=", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLessThan(String value) {
addCriterion("CREATE_USER <", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLessThanOrEqualTo(String value) {
addCriterion("CREATE_USER <=", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserLike(String value) {
addCriterion("CREATE_USER like", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotLike(String value) {
addCriterion("CREATE_USER not like", value, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserIn(List<String> values) {
addCriterion("CREATE_USER in", values, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotIn(List<String> values) {
addCriterion("CREATE_USER not in", values, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserBetween(String value1, String value2) {
addCriterion("CREATE_USER between", value1, value2, "createUser");
return (Criteria) this;
}
public Criteria andCreateUserNotBetween(String value1, String value2) {
addCriterion("CREATE_USER not between", value1, value2, "createUser");
return (Criteria) this;
}
public Criteria andCreateDateIsNull() {
addCriterion("CREATE_DATE is null");
return (Criteria) this;
}
public Criteria andCreateDateIsNotNull() {
addCriterion("CREATE_DATE is not null");
return (Criteria) this;
}
public Criteria andCreateDateEqualTo(String value) {
addCriterion("CREATE_DATE =", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotEqualTo(String value) {
addCriterion("CREATE_DATE <>", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateGreaterThan(String value) {
addCriterion("CREATE_DATE >", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_DATE >=", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLessThan(String value) {
addCriterion("CREATE_DATE <", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLessThanOrEqualTo(String value) {
addCriterion("CREATE_DATE <=", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateLike(String value) {
addCriterion("CREATE_DATE like", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotLike(String value) {
addCriterion("CREATE_DATE not like", value, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateIn(List<String> values) {
addCriterion("CREATE_DATE in", values, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotIn(List<String> values) {
addCriterion("CREATE_DATE not in", values, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateBetween(String value1, String value2) {
addCriterion("CREATE_DATE between", value1, value2, "createDate");
return (Criteria) this;
}
public Criteria andCreateDateNotBetween(String value1, String value2) {
addCriterion("CREATE_DATE not between", value1, value2, "createDate");
return (Criteria) this;
}
public Criteria andCreateTimeIsNull() {
addCriterion("CREATE_TIME is null");
return (Criteria) this;
}
public Criteria andCreateTimeIsNotNull() {
addCriterion("CREATE_TIME is not null");
return (Criteria) this;
}
public Criteria andCreateTimeEqualTo(String value) {
addCriterion("CREATE_TIME =", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotEqualTo(String value) {
addCriterion("CREATE_TIME <>", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThan(String value) {
addCriterion("CREATE_TIME >", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThanOrEqualTo(String value) {
addCriterion("CREATE_TIME >=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThan(String value) {
addCriterion("CREATE_TIME <", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThanOrEqualTo(String value) {
addCriterion("CREATE_TIME <=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLike(String value) {
addCriterion("CREATE_TIME like", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotLike(String value) {
addCriterion("CREATE_TIME not like", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeIn(List<String> values) {
addCriterion("CREATE_TIME in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotIn(List<String> values) {
addCriterion("CREATE_TIME not in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeBetween(String value1, String value2) {
addCriterion("CREATE_TIME between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotBetween(String value1, String value2) {
addCriterion("CREATE_TIME not between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andUpdateUserIsNull() {
addCriterion("UPDATE_USER is null");
return (Criteria) this;
}
public Criteria andUpdateUserIsNotNull() {
addCriterion("UPDATE_USER is not null");
return (Criteria) this;
}
public Criteria andUpdateUserEqualTo(String value) {
addCriterion("UPDATE_USER =", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotEqualTo(String value) {
addCriterion("UPDATE_USER <>", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserGreaterThan(String value) {
addCriterion("UPDATE_USER >", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_USER >=", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLessThan(String value) {
addCriterion("UPDATE_USER <", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLessThanOrEqualTo(String value) {
addCriterion("UPDATE_USER <=", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserLike(String value) {
addCriterion("UPDATE_USER like", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotLike(String value) {
addCriterion("UPDATE_USER not like", value, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserIn(List<String> values) {
addCriterion("UPDATE_USER in", values, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotIn(List<String> values) {
addCriterion("UPDATE_USER not in", values, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserBetween(String value1, String value2) {
addCriterion("UPDATE_USER between", value1, value2, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateUserNotBetween(String value1, String value2) {
addCriterion("UPDATE_USER not between", value1, value2, "updateUser");
return (Criteria) this;
}
public Criteria andUpdateDateIsNull() {
addCriterion("UPDATE_DATE is null");
return (Criteria) this;
}
public Criteria andUpdateDateIsNotNull() {
addCriterion("UPDATE_DATE is not null");
return (Criteria) this;
}
public Criteria andUpdateDateEqualTo(String value) {
addCriterion("UPDATE_DATE =", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotEqualTo(String value) {
addCriterion("UPDATE_DATE <>", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThan(String value) {
addCriterion("UPDATE_DATE >", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_DATE >=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThan(String value) {
addCriterion("UPDATE_DATE <", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLessThanOrEqualTo(String value) {
addCriterion("UPDATE_DATE <=", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateLike(String value) {
addCriterion("UPDATE_DATE like", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotLike(String value) {
addCriterion("UPDATE_DATE not like", value, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateIn(List<String> values) {
addCriterion("UPDATE_DATE in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotIn(List<String> values) {
addCriterion("UPDATE_DATE not in", values, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateBetween(String value1, String value2) {
addCriterion("UPDATE_DATE between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateDateNotBetween(String value1, String value2) {
addCriterion("UPDATE_DATE not between", value1, value2, "updateDate");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNull() {
addCriterion("UPDATE_TIME is null");
return (Criteria) this;
}
public Criteria andUpdateTimeIsNotNull() {
addCriterion("UPDATE_TIME is not null");
return (Criteria) this;
}
public Criteria andUpdateTimeEqualTo(String value) {
addCriterion("UPDATE_TIME =", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotEqualTo(String value) {
addCriterion("UPDATE_TIME <>", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThan(String value) {
addCriterion("UPDATE_TIME >", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeGreaterThanOrEqualTo(String value) {
addCriterion("UPDATE_TIME >=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThan(String value) {
addCriterion("UPDATE_TIME <", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLessThanOrEqualTo(String value) {
addCriterion("UPDATE_TIME <=", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeLike(String value) {
addCriterion("UPDATE_TIME like", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotLike(String value) {
addCriterion("UPDATE_TIME not like", value, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeIn(List<String> values) {
addCriterion("UPDATE_TIME in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotIn(List<String> values) {
addCriterion("UPDATE_TIME not in", values, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeBetween(String value1, String value2) {
addCriterion("UPDATE_TIME between", value1, value2, "updateTime");
return (Criteria) this;
}
public Criteria andUpdateTimeNotBetween(String value1, String value2) {
addCriterion("UPDATE_TIME not between", value1, value2, "updateTime");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table cms_user_role
*
* @mbggenerated do_not_delete_during_merge Fri Aug 18 13:38:42 CST 2017
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table cms_user_role
*
* @mbggenerated Fri Aug 18 13:38:42 CST 2017
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}

View File

@ -0,0 +1,67 @@
package com.ruoyi.content.domain;
public class CompanyArticleInfo {
private String publishId; //文章发布Id(版本号)
private String articleId; //文章id
private String articleName; //文章名称
private String listPicUrl; //文章列表显示图片
private String createDate; //文章发布日期
private String visitorCount; //文章浏览人数
private String sharedCount; //文章分享人数
private String publishViewUrl; //文章发布浏览静态页面路径
public String getPublishId() {
return publishId;
}
public void setPublishId(String publishId) {
this.publishId = publishId;
}
public String getArticleId() {
return articleId;
}
public void setArticleId(String articleId) {
this.articleId = articleId;
}
public String getArticleName() {
return articleName;
}
public void setArticleName(String articleName) {
this.articleName = articleName;
}
public String getListPicUrl() {
return listPicUrl;
}
public void setListPicUrl(String listPicUrl) {
this.listPicUrl = listPicUrl;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getVisitorCount() {
return visitorCount;
}
public void setVisitorCount(String visitorCount) {
this.visitorCount = visitorCount;
}
public String getSharedCount() {
return sharedCount;
}
public void setSharedCount(String sharedCount) {
this.sharedCount = sharedCount;
}
public String getPublishViewUrl() {
return publishViewUrl;
}
public void setPublishViewUrl(String publishViewUrl) {
this.publishViewUrl = publishViewUrl;
}
}

View File

@ -0,0 +1,547 @@
package com.ruoyi.content.domain;
public class CompanyInfo {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private Integer companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.APP_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String appName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.APP_ORIGINAL_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String appOriginalId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.WECHAT_CODE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String wechatCode;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.WECHAT_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String wechatType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.QR_CODE_URL
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String qrCodeUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.APP_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String appId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.APP_SECRET
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String appSecret;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.COMPANY_CODE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String companyCode;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.COMPANY_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String companyName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.COMPANY_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String companyType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column company_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
private String updateTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.COMPANY_ID
*
* @return the value of company_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public Integer getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.COMPANY_ID
*
* @param companyId the value for company_info.COMPANY_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCompanyId(Integer companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.APP_NAME
*
* @return the value of company_info.APP_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getAppName() {
return appName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.APP_NAME
*
* @param appName the value for company_info.APP_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setAppName(String appName) {
this.appName = appName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.APP_ORIGINAL_ID
*
* @return the value of company_info.APP_ORIGINAL_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getAppOriginalId() {
return appOriginalId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.APP_ORIGINAL_ID
*
* @param appOriginalId the value for company_info.APP_ORIGINAL_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setAppOriginalId(String appOriginalId) {
this.appOriginalId = appOriginalId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.WECHAT_CODE
*
* @return the value of company_info.WECHAT_CODE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getWechatCode() {
return wechatCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.WECHAT_CODE
*
* @param wechatCode the value for company_info.WECHAT_CODE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setWechatCode(String wechatCode) {
this.wechatCode = wechatCode;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.WECHAT_TYPE
*
* @return the value of company_info.WECHAT_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getWechatType() {
return wechatType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.WECHAT_TYPE
*
* @param wechatType the value for company_info.WECHAT_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setWechatType(String wechatType) {
this.wechatType = wechatType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.QR_CODE_URL
*
* @return the value of company_info.QR_CODE_URL
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getQrCodeUrl() {
return qrCodeUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.QR_CODE_URL
*
* @param qrCodeUrl the value for company_info.QR_CODE_URL
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setQrCodeUrl(String qrCodeUrl) {
this.qrCodeUrl = qrCodeUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.APP_ID
*
* @return the value of company_info.APP_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getAppId() {
return appId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.APP_ID
*
* @param appId the value for company_info.APP_ID
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setAppId(String appId) {
this.appId = appId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.APP_SECRET
*
* @return the value of company_info.APP_SECRET
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getAppSecret() {
return appSecret;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.APP_SECRET
*
* @param appSecret the value for company_info.APP_SECRET
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setAppSecret(String appSecret) {
this.appSecret = appSecret;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.COMPANY_CODE
*
* @return the value of company_info.COMPANY_CODE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCompanyCode() {
return companyCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.COMPANY_CODE
*
* @param companyCode the value for company_info.COMPANY_CODE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCompanyCode(String companyCode) {
this.companyCode = companyCode;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.COMPANY_NAME
*
* @return the value of company_info.COMPANY_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCompanyName() {
return companyName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.COMPANY_NAME
*
* @param companyName the value for company_info.COMPANY_NAME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.COMPANY_TYPE
*
* @return the value of company_info.COMPANY_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCompanyType() {
return companyType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.COMPANY_TYPE
*
* @param companyType the value for company_info.COMPANY_TYPE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCompanyType(String companyType) {
this.companyType = companyType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.CREATE_DATE
*
* @return the value of company_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.CREATE_DATE
*
* @param createDate the value for company_info.CREATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.CREATE_TIME
*
* @return the value of company_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.CREATE_TIME
*
* @param createTime the value for company_info.CREATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.CREATE_USER
*
* @return the value of company_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.CREATE_USER
*
* @param createUser the value for company_info.CREATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.UPDATE_USER
*
* @return the value of company_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.UPDATE_USER
*
* @param updateUser the value for company_info.UPDATE_USER
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.UPDATE_DATE
*
* @return the value of company_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.UPDATE_DATE
*
* @param updateDate the value for company_info.UPDATE_DATE
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column company_info.UPDATE_TIME
*
* @return the value of company_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column company_info.UPDATE_TIME
*
* @param updateTime the value for company_info.UPDATE_TIME
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,131 @@
package com.ruoyi.content.domain;
public class LdComParty {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column ldcom_party.PARTY_ID
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
private String partyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column ldcom_party.COMCODE
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
private String comcode;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column ldcom_party.SHORTNAME
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
private String shortname;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column ldcom_party.COMPANY_ID
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
private String companyId;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ldcom_party.PARTY_ID
*
* @return the value of ldcom_party.PARTY_ID
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public String getPartyId() {
return partyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ldcom_party.PARTY_ID
*
* @param partyId the value for ldcom_party.PARTY_ID
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public void setPartyId(String partyId) {
this.partyId = partyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ldcom_party.COMCODE
*
* @return the value of ldcom_party.COMCODE
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public String getComcode() {
return comcode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ldcom_party.COMCODE
*
* @param comcode the value for ldcom_party.COMCODE
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public void setComcode(String comcode) {
this.comcode = comcode;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ldcom_party.SHORTNAME
*
* @return the value of ldcom_party.SHORTNAME
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public String getShortname() {
return shortname;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ldcom_party.SHORTNAME
*
* @param shortname the value for ldcom_party.SHORTNAME
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public void setShortname(String shortname) {
this.shortname = shortname;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ldcom_party.COMPANY_ID
*
* @return the value of ldcom_party.COMPANY_ID
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ldcom_party.COMPANY_ID
*
* @param companyId the value for ldcom_party.COMPANY_ID
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
}

View File

@ -0,0 +1,582 @@
package com.ruoyi.content.domain;
import java.util.ArrayList;
import java.util.List;
public class LdComPartyExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public LdComPartyExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andPartyIdIsNull() {
addCriterion("PARTY_ID is null");
return (Criteria) this;
}
public Criteria andPartyIdIsNotNull() {
addCriterion("PARTY_ID is not null");
return (Criteria) this;
}
public Criteria andPartyIdEqualTo(String value) {
addCriterion("PARTY_ID =", value, "partyId");
return (Criteria) this;
}
public Criteria andPartyIdNotEqualTo(String value) {
addCriterion("PARTY_ID <>", value, "partyId");
return (Criteria) this;
}
public Criteria andPartyIdGreaterThan(String value) {
addCriterion("PARTY_ID >", value, "partyId");
return (Criteria) this;
}
public Criteria andPartyIdGreaterThanOrEqualTo(String value) {
addCriterion("PARTY_ID >=", value, "partyId");
return (Criteria) this;
}
public Criteria andPartyIdLessThan(String value) {
addCriterion("PARTY_ID <", value, "partyId");
return (Criteria) this;
}
public Criteria andPartyIdLessThanOrEqualTo(String value) {
addCriterion("PARTY_ID <=", value, "partyId");
return (Criteria) this;
}
public Criteria andPartyIdLike(String value) {
addCriterion("PARTY_ID like", value, "partyId");
return (Criteria) this;
}
public Criteria andPartyIdNotLike(String value) {
addCriterion("PARTY_ID not like", value, "partyId");
return (Criteria) this;
}
public Criteria andPartyIdIn(List<String> values) {
addCriterion("PARTY_ID in", values, "partyId");
return (Criteria) this;
}
public Criteria andPartyIdNotIn(List<String> values) {
addCriterion("PARTY_ID not in", values, "partyId");
return (Criteria) this;
}
public Criteria andPartyIdBetween(String value1, String value2) {
addCriterion("PARTY_ID between", value1, value2, "partyId");
return (Criteria) this;
}
public Criteria andPartyIdNotBetween(String value1, String value2) {
addCriterion("PARTY_ID not between", value1, value2, "partyId");
return (Criteria) this;
}
public Criteria andComcodeIsNull() {
addCriterion("COMCODE is null");
return (Criteria) this;
}
public Criteria andComcodeIsNotNull() {
addCriterion("COMCODE is not null");
return (Criteria) this;
}
public Criteria andComcodeEqualTo(String value) {
addCriterion("COMCODE =", value, "comcode");
return (Criteria) this;
}
public Criteria andComcodeNotEqualTo(String value) {
addCriterion("COMCODE <>", value, "comcode");
return (Criteria) this;
}
public Criteria andComcodeGreaterThan(String value) {
addCriterion("COMCODE >", value, "comcode");
return (Criteria) this;
}
public Criteria andComcodeGreaterThanOrEqualTo(String value) {
addCriterion("COMCODE >=", value, "comcode");
return (Criteria) this;
}
public Criteria andComcodeLessThan(String value) {
addCriterion("COMCODE <", value, "comcode");
return (Criteria) this;
}
public Criteria andComcodeLessThanOrEqualTo(String value) {
addCriterion("COMCODE <=", value, "comcode");
return (Criteria) this;
}
public Criteria andComcodeLike(String value) {
addCriterion("COMCODE like", value, "comcode");
return (Criteria) this;
}
public Criteria andComcodeNotLike(String value) {
addCriterion("COMCODE not like", value, "comcode");
return (Criteria) this;
}
public Criteria andComcodeIn(List<String> values) {
addCriterion("COMCODE in", values, "comcode");
return (Criteria) this;
}
public Criteria andComcodeNotIn(List<String> values) {
addCriterion("COMCODE not in", values, "comcode");
return (Criteria) this;
}
public Criteria andComcodeBetween(String value1, String value2) {
addCriterion("COMCODE between", value1, value2, "comcode");
return (Criteria) this;
}
public Criteria andComcodeNotBetween(String value1, String value2) {
addCriterion("COMCODE not between", value1, value2, "comcode");
return (Criteria) this;
}
public Criteria andShortnameIsNull() {
addCriterion("SHORTNAME is null");
return (Criteria) this;
}
public Criteria andShortnameIsNotNull() {
addCriterion("SHORTNAME is not null");
return (Criteria) this;
}
public Criteria andShortnameEqualTo(String value) {
addCriterion("SHORTNAME =", value, "shortname");
return (Criteria) this;
}
public Criteria andShortnameNotEqualTo(String value) {
addCriterion("SHORTNAME <>", value, "shortname");
return (Criteria) this;
}
public Criteria andShortnameGreaterThan(String value) {
addCriterion("SHORTNAME >", value, "shortname");
return (Criteria) this;
}
public Criteria andShortnameGreaterThanOrEqualTo(String value) {
addCriterion("SHORTNAME >=", value, "shortname");
return (Criteria) this;
}
public Criteria andShortnameLessThan(String value) {
addCriterion("SHORTNAME <", value, "shortname");
return (Criteria) this;
}
public Criteria andShortnameLessThanOrEqualTo(String value) {
addCriterion("SHORTNAME <=", value, "shortname");
return (Criteria) this;
}
public Criteria andShortnameLike(String value) {
addCriterion("SHORTNAME like", value, "shortname");
return (Criteria) this;
}
public Criteria andShortnameNotLike(String value) {
addCriterion("SHORTNAME not like", value, "shortname");
return (Criteria) this;
}
public Criteria andShortnameIn(List<String> values) {
addCriterion("SHORTNAME in", values, "shortname");
return (Criteria) this;
}
public Criteria andShortnameNotIn(List<String> values) {
addCriterion("SHORTNAME not in", values, "shortname");
return (Criteria) this;
}
public Criteria andShortnameBetween(String value1, String value2) {
addCriterion("SHORTNAME between", value1, value2, "shortname");
return (Criteria) this;
}
public Criteria andShortnameNotBetween(String value1, String value2) {
addCriterion("SHORTNAME not between", value1, value2, "shortname");
return (Criteria) this;
}
public Criteria andCompanyIdIsNull() {
addCriterion("COMPANY_ID is null");
return (Criteria) this;
}
public Criteria andCompanyIdIsNotNull() {
addCriterion("COMPANY_ID is not null");
return (Criteria) this;
}
public Criteria andCompanyIdEqualTo(String value) {
addCriterion("COMPANY_ID =", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdNotEqualTo(String value) {
addCriterion("COMPANY_ID <>", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdGreaterThan(String value) {
addCriterion("COMPANY_ID >", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdGreaterThanOrEqualTo(String value) {
addCriterion("COMPANY_ID >=", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdLessThan(String value) {
addCriterion("COMPANY_ID <", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdLessThanOrEqualTo(String value) {
addCriterion("COMPANY_ID <=", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdLike(String value) {
addCriterion("COMPANY_ID like", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdNotLike(String value) {
addCriterion("COMPANY_ID not like", value, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdIn(List<String> values) {
addCriterion("COMPANY_ID in", values, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdNotIn(List<String> values) {
addCriterion("COMPANY_ID not in", values, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdBetween(String value1, String value2) {
addCriterion("COMPANY_ID between", value1, value2, "companyId");
return (Criteria) this;
}
public Criteria andCompanyIdNotBetween(String value1, String value2) {
addCriterion("COMPANY_ID not between", value1, value2, "companyId");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table ldcom_party
*
* @mbggenerated do_not_delete_during_merge Tue Sep 25 15:09:32 CST 2018
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table ldcom_party
*
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}

View File

@ -0,0 +1,22 @@
package com.ruoyi.content.domain;
public class LdExCom {
private String comcode;
private String shortname;
public String getComcode() {
return comcode;
}
public void setComcode(String comcode) {
this.comcode = comcode;
}
public String getShortname() {
return shortname;
}
public void setShortname(String shortname) {
this.shortname = shortname;
}
}

View File

@ -0,0 +1,66 @@
package com.ruoyi.content.domain;
/**
* OSS参数对象
*
* @author zhanghe
*
*/
public class OssDTO {
private String ossId; // 阿里云OSS提供的ossId
private String ossKey; // 阿里云OSS提供的ossKey
private String bucketName; // 阿里云OSS提供的ossBucket
private String ossPath; // 阿里云OSS上保存文件的路径
private String ossEndPoint; // 阿里云OSS提供的ossEndPoint
private String ossEndPointOut; // 阿里云OSS提供的ossEndPoint
public String getOssId() {
return ossId;
}
public void setOssId(String ossId) {
this.ossId = ossId;
}
public String getOssKey() {
return ossKey;
}
public void setOssKey(String ossKey) {
this.ossKey = ossKey;
}
public String getBucketName() {
return bucketName;
}
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
public String getOssPath() {
return ossPath;
}
public void setOssPath(String ossPath) {
this.ossPath = ossPath;
}
public String getOssEndPoint() {
return ossEndPoint;
}
public void setOssEndPoint(String ossEndPoint) {
this.ossEndPoint = ossEndPoint;
}
public String getOssEndPointOut() {
return ossEndPointOut;
}
public void setOssEndPointOut(String ossEndPointOut) {
this.ossEndPointOut = ossEndPointOut;
}
}

View File

@ -0,0 +1,108 @@
package com.ruoyi.content.domain;
import java.util.List;
public class PageDTO extends BaseDTO{
private static final int PageQuerySize = 5;
private int page = 1; //当前页号
private int rows = PageQuerySize; //每页显示的行数
private int startRow = 0; //当前页在数据库中的起始行
private Object parameters; //查询参数
private int total; //总页数
@SuppressWarnings("rawtypes")
private List dataRows; //查询结果信息
private String pageCode = "1"; //默认为成功 1成功 2失败
private String pageMsg = ""; //结果
private int records;//记录数
private String userData;//
public int getPage() {
return page;
}
public void setPage(int page) {
this.page = page;
}
public int getRows() {
return rows;
}
public void setRows(int rows) {
this.rows = rows;
}
public int getStartRow() {
return startRow;
}
public void setStartRow(int startRow) {
this.startRow = startRow;
}
public Object getParameters() {
return parameters;
}
public void setParameters(Object parameters) {
this.parameters = parameters;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
@SuppressWarnings("rawtypes")
public List getDataRows() {
return dataRows;
}
@SuppressWarnings("rawtypes")
public void setDataRows(List dataRows) {
this.dataRows = dataRows;
}
public String getPageCode() {
return pageCode;
}
public void setPageCode(String pageCode) {
this.pageCode = pageCode;
}
public String getPageMsg() {
return pageMsg;
}
public void setPageMsg(String pageMsg) {
this.pageMsg = pageMsg;
}
public int getRecords() {
return records;
}
public void setRecords(int records) {
this.records = records;
}
public static int getPagequerysize() {
return PageQuerySize;
}
public String getUserData() {
return userData;
}
public void setUserData(String userData) {
this.userData = userData;
}
}

View File

@ -0,0 +1,419 @@
package com.ruoyi.content.domain;
public class PicAdInfo {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.PIC_AD_ID
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private Integer picAdId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.PIC_AD_TYPE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String picAdType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.PIC_AD_TITLE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String picAdTitle;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.PIC_AD_NAME
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String picAdName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.PIC_AD_URL
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String picAdUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.PIC_AD_STATE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String picAdState;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.COMPANY_ID
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.CREATE_DATE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.CREATE_TIME
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.CREATE_USER
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.UPDATE_USER
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String updateUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.UPDATE_DATE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String updateDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column pic_ad_info.UPDATE_TIME
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
private String updateTime;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.PIC_AD_ID
*
* @return the value of pic_ad_info.PIC_AD_ID
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public Integer getPicAdId() {
return picAdId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.PIC_AD_ID
*
* @param picAdId the value for pic_ad_info.PIC_AD_ID
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setPicAdId(Integer picAdId) {
this.picAdId = picAdId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.PIC_AD_TYPE
*
* @return the value of pic_ad_info.PIC_AD_TYPE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getPicAdType() {
return picAdType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.PIC_AD_TYPE
*
* @param picAdType the value for pic_ad_info.PIC_AD_TYPE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setPicAdType(String picAdType) {
this.picAdType = picAdType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.PIC_AD_TITLE
*
* @return the value of pic_ad_info.PIC_AD_TITLE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getPicAdTitle() {
return picAdTitle;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.PIC_AD_TITLE
*
* @param picAdTitle the value for pic_ad_info.PIC_AD_TITLE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setPicAdTitle(String picAdTitle) {
this.picAdTitle = picAdTitle;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.PIC_AD_NAME
*
* @return the value of pic_ad_info.PIC_AD_NAME
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getPicAdName() {
return picAdName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.PIC_AD_NAME
*
* @param picAdName the value for pic_ad_info.PIC_AD_NAME
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setPicAdName(String picAdName) {
this.picAdName = picAdName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.PIC_AD_URL
*
* @return the value of pic_ad_info.PIC_AD_URL
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getPicAdUrl() {
return picAdUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.PIC_AD_URL
*
* @param picAdUrl the value for pic_ad_info.PIC_AD_URL
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setPicAdUrl(String picAdUrl) {
this.picAdUrl = picAdUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.PIC_AD_STATE
*
* @return the value of pic_ad_info.PIC_AD_STATE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getPicAdState() {
return picAdState;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.PIC_AD_STATE
*
* @param picAdState the value for pic_ad_info.PIC_AD_STATE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setPicAdState(String picAdState) {
this.picAdState = picAdState;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.COMPANY_ID
*
* @return the value of pic_ad_info.COMPANY_ID
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.COMPANY_ID
*
* @param companyId the value for pic_ad_info.COMPANY_ID
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.CREATE_DATE
*
* @return the value of pic_ad_info.CREATE_DATE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.CREATE_DATE
*
* @param createDate the value for pic_ad_info.CREATE_DATE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.CREATE_TIME
*
* @return the value of pic_ad_info.CREATE_TIME
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getCreateTime() {
return createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.CREATE_TIME
*
* @param createTime the value for pic_ad_info.CREATE_TIME
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.CREATE_USER
*
* @return the value of pic_ad_info.CREATE_USER
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.CREATE_USER
*
* @param createUser the value for pic_ad_info.CREATE_USER
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.UPDATE_USER
*
* @return the value of pic_ad_info.UPDATE_USER
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getUpdateUser() {
return updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.UPDATE_USER
*
* @param updateUser the value for pic_ad_info.UPDATE_USER
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.UPDATE_DATE
*
* @return the value of pic_ad_info.UPDATE_DATE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.UPDATE_DATE
*
* @param updateDate the value for pic_ad_info.UPDATE_DATE
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column pic_ad_info.UPDATE_TIME
*
* @return the value of pic_ad_info.UPDATE_TIME
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public String getUpdateTime() {
return updateTime;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column pic_ad_info.UPDATE_TIME
*
* @param updateTime the value for pic_ad_info.UPDATE_TIME
*
* @mbggenerated Tue Jun 12 09:41:05 CST 2018
*/
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,129 @@
package com.ruoyi.content.domain;
public class PublishedArticleInfo {
private String articleId; //文章id
private String articleName; //文章名称
private String pushDate; //文章发布日期
private String articleAuthor; //文章作者
private String special; //一级栏目
private String channelId; //二级栏目
private String articleState; //文章状态
private String originalUrl; //原文链接
private String shareTitle; //分享标题
private String shareDes; //分享描述
private String createUser; //创建者
private String updateDate; //更新日期
private String updateTime; //更新时间
private String visitorCount; //浏览量
private String modifiedEditUrl; //预览路径
private String modifiedViewUrl; //编辑路径
private String shareCount; //分享量
public String getArticleId() {
return articleId;
}
public void setArticleId(String articleId) {
this.articleId = articleId;
}
public String getArticleName() {
return articleName;
}
public void setArticleName(String articleName) {
this.articleName = articleName;
}
public String getPushDate() {
return pushDate;
}
public void setPushDate(String pushDate) {
this.pushDate = pushDate;
}
public String getArticleAuthor() {
return articleAuthor;
}
public void setArticleAuthor(String articleAuthor) {
this.articleAuthor = articleAuthor;
}
public String getSpecial() {
return special;
}
public void setSpecial(String special) {
this.special = special;
}
public String getChannelId() {
return channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getArticleState() {
return articleState;
}
public void setArticleState(String articleState) {
this.articleState = articleState;
}
public String getOriginalUrl() {
return originalUrl;
}
public void setOriginalUrl(String originalUrl) {
this.originalUrl = originalUrl;
}
public String getShareTitle() {
return shareTitle;
}
public void setShareTitle(String shareTitle) {
this.shareTitle = shareTitle;
}
public String getShareDes() {
return shareDes;
}
public void setShareDes(String shareDes) {
this.shareDes = shareDes;
}
public String getCreateUser() {
return createUser;
}
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
public String getUpdateDate() {
return updateDate;
}
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public String getVisitorCount() {
return visitorCount;
}
public void setVisitorCount(String visitorCount) {
this.visitorCount = visitorCount;
}
public String getShareCount() {
return shareCount;
}
public void setShareCount(String shareCount) {
this.shareCount = shareCount;
}
public String getModifiedEditUrl() {
return modifiedEditUrl;
}
public void setModifiedEditUrl(String modifiedEditUrl) {
this.modifiedEditUrl = modifiedEditUrl;
}
public String getModifiedViewUrl() {
return modifiedViewUrl;
}
public void setModifiedViewUrl(String modifiedViewUrl) {
this.modifiedViewUrl = modifiedViewUrl;
}
}

View File

@ -0,0 +1,100 @@
package com.ruoyi.content.domain;
public class RedisPublishedArticleInfo {
private String publishId; //文章发布id
private String articleId; //文章id
private String articleName; //文章名称
private String listPicUrl; //文章列表显示图片
private String createDate; //文章发布日期
private String visitorCount; //文章浏览人数
private String sharedCount; //文章分享人数
private String publishViewUrl; //文章发布浏览静态页面路径
private String publishEditUrl; //文章发布编辑静态页面路径
private String adId; //广告id
private String cardId; //名片id
public String getCardId() {
return cardId;
}
public void setCardId(String cardId) {
this.cardId = cardId;
}
public String getAdId() {
return adId;
}
public void setAdId(String adId) {
this.adId = adId;
}
@Override
public String toString() {
return "PublishedArticleInfo [publishId=" + publishId + ", articleId=" + articleId + ", articleName="
+ articleName + ", listPicUrl=" + listPicUrl + ", createDate=" + createDate + ", visitorCount="
+ visitorCount + ", sharedCount=" + sharedCount + ", publishViewUrl=" + publishViewUrl
+ ", publishEditUrl=" + publishEditUrl + ", adId=" + adId + ", cardId=" + cardId + "]";
}
public String getPublishViewUrl() {
return publishViewUrl;
}
public void setPublishViewUrl(String publishViewUrl) {
this.publishViewUrl = publishViewUrl;
}
public String getPublishEditUrl() {
return publishEditUrl;
}
public void setPublishEditUrl(String publishEditUrl) {
this.publishEditUrl = publishEditUrl;
}
public String getPublishId() {
return publishId;
}
public void setPublishId(String publishId) {
this.publishId = publishId;
}
public String getArticleId() {
return articleId;
}
public void setArticleId(String articleId) {
this.articleId = articleId;
}
public String getArticleName() {
return articleName;
}
public void setArticleName(String articleName) {
this.articleName = articleName;
}
public String getListPicUrl() {
return listPicUrl;
}
public void setListPicUrl(String listPicUrl) {
this.listPicUrl = listPicUrl;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getVisitorCount() {
return visitorCount;
}
public void setVisitorCount(String visitorCount) {
this.visitorCount = visitorCount;
}
public String getSharedCount() {
return sharedCount;
}
public void setSharedCount(String sharedCount) {
this.sharedCount = sharedCount;
}
}

View File

@ -0,0 +1,861 @@
package com.ruoyi.content.domain;
import java.util.Date;
public class UserInfo {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.USER_ID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private Integer userId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.OPENID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String openid;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.HEAD_IMG_URL
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String headImgUrl;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.NICK_NAME
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String nickName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.COMPANY_ID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String companyId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.AGENT_CODE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String agentCode;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.USER_NAME
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String userName;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.ID_TYPE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String idType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.ID_NO
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String idNo;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.GENDER
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String gender;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.USER_POSITION
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String userPosition;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.BIRTHDAY
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String birthday;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.EDUCATION
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String education;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.MOBILE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String mobile;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.USER_EMAIL
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String userEmail;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.PROVINCE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String province;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.CITY
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String city;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.AREA
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String area;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.REFEREE_USERID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String refereeUserid;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.STATE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String state;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.CREATE_USER
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String createUser;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.CREATE_TIME
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String createTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.UPDATE_TIME
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String updateTime;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.UPDATE_REMARK
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String updateRemark;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.SOURCE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
private String source;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.TIMESTAMP
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
// private String timestamp;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.AGE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
// private String age;
private String cardImgUrl;
public String getCardImgUrl() {
return cardImgUrl;
}
public void setCardImgUrl(String cardImgUrl) {
this.cardImgUrl = cardImgUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.USER_ID
*
* @return the value of user_info.USER_ID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public Integer getUserId() {
return userId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.USER_ID
*
* @param userId the value for user_info.USER_ID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setUserId(Integer userId) {
this.userId = userId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.OPENID
*
* @return the value of user_info.OPENID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getOpenid() {
return openid;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.OPENID
*
* @param openid the value for user_info.OPENID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setOpenid(String openid) {
this.openid = openid;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.HEAD_IMG_URL
*
* @return the value of user_info.HEAD_IMG_URL
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getHeadImgUrl() {
return headImgUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.HEAD_IMG_URL
*
* @param headImgUrl the value for user_info.HEAD_IMG_URL
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setHeadImgUrl(String headImgUrl) {
this.headImgUrl = headImgUrl;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.NICK_NAME
*
* @return the value of user_info.NICK_NAME
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getNickName() {
return nickName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.NICK_NAME
*
* @param nickName the value for user_info.NICK_NAME
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setNickName(String nickName) {
this.nickName = nickName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.COMPANY_ID
*
* @return the value of user_info.COMPANY_ID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getCompanyId() {
return companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.COMPANY_ID
*
* @param companyId the value for user_info.COMPANY_ID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.AGENT_CODE
*
* @return the value of user_info.AGENT_CODE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getAgentCode() {
return agentCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.AGENT_CODE
*
* @param agentCode the value for user_info.AGENT_CODE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setAgentCode(String agentCode) {
this.agentCode = agentCode;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.USER_NAME
*
* @return the value of user_info.USER_NAME
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getUserName() {
return userName;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.USER_NAME
*
* @param userName the value for user_info.USER_NAME
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.ID_TYPE
*
* @return the value of user_info.ID_TYPE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getIdType() {
return idType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.ID_TYPE
*
* @param idType the value for user_info.ID_TYPE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setIdType(String idType) {
this.idType = idType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.ID_NO
*
* @return the value of user_info.ID_NO
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getIdNo() {
return idNo;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.ID_NO
*
* @param idNo the value for user_info.ID_NO
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setIdNo(String idNo) {
this.idNo = idNo;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.GENDER
*
* @return the value of user_info.GENDER
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getGender() {
return gender;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.GENDER
*
* @param gender the value for user_info.GENDER
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setGender(String gender) {
this.gender = gender;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.USER_POSITION
*
* @return the value of user_info.USER_POSITION
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getUserPosition() {
return userPosition;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.USER_POSITION
*
* @param userPosition the value for user_info.USER_POSITION
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setUserPosition(String userPosition) {
this.userPosition = userPosition;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.BIRTHDAY
*
* @return the value of user_info.BIRTHDAY
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getBirthday() {
return birthday;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.BIRTHDAY
*
* @param birthday the value for user_info.BIRTHDAY
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setBirthday(String birthday) {
this.birthday = birthday;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.EDUCATION
*
* @return the value of user_info.EDUCATION
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getEducation() {
return education;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.EDUCATION
*
* @param education the value for user_info.EDUCATION
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setEducation(String education) {
this.education = education;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.MOBILE
*
* @return the value of user_info.MOBILE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getMobile() {
return mobile;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.MOBILE
*
* @param mobile the value for user_info.MOBILE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setMobile(String mobile) {
this.mobile = mobile;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.USER_EMAIL
*
* @return the value of user_info.USER_EMAIL
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getUserEmail() {
return userEmail;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.USER_EMAIL
*
* @param userEmail the value for user_info.USER_EMAIL
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setUserEmail(String userEmail) {
this.userEmail = userEmail;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.PROVINCE
*
* @return the value of user_info.PROVINCE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getProvince() {
return province;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.PROVINCE
*
* @param province the value for user_info.PROVINCE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setProvince(String province) {
this.province = province;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.CITY
*
* @return the value of user_info.CITY
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getCity() {
return city;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.CITY
*
* @param city the value for user_info.CITY
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setCity(String city) {
this.city = city;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.AREA
*
* @return the value of user_info.AREA
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getArea() {
return area;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.AREA
*
* @param area the value for user_info.AREA
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setArea(String area) {
this.area = area;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.REFEREE_USERID
*
* @return the value of user_info.REFEREE_USERID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getRefereeUserid() {
return refereeUserid;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.REFEREE_USERID
*
* @param refereeUserid the value for user_info.REFEREE_USERID
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setRefereeUserid(String refereeUserid) {
this.refereeUserid = refereeUserid;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.STATE
*
* @return the value of user_info.STATE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getState() {
return state;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.STATE
*
* @param state the value for user_info.STATE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setState(String state) {
this.state = state;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.CREATE_USER
*
* @return the value of user_info.CREATE_USER
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getCreateUser() {
return createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.CREATE_USER
*
* @param createUser the value for user_info.CREATE_USER
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.CREATE_TIME
*
* @return the value of user_info.CREATE_TIME
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.UPDATE_REMARK
*
* @return the value of user_info.UPDATE_REMARK
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getUpdateRemark() {
return updateRemark;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.UPDATE_REMARK
*
* @param updateRemark the value for user_info.UPDATE_REMARK
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setUpdateRemark(String updateRemark) {
this.updateRemark = updateRemark;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.SOURCE
*
* @return the value of user_info.SOURCE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public String getSource() {
return source;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.SOURCE
*
* @param source the value for user_info.SOURCE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
public void setSource(String source) {
this.source = source;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.TIMESTAMP
*
* @return the value of user_info.TIMESTAMP
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.AGE
*
* @return the value of user_info.AGE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
// public String getAge() {
// return age;
// }
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.AGE
*
* @param age the value for user_info.AGE
*
* @mbggenerated Tue Jul 16 10:12:10 CST 2019
*/
// public void setAge(String age) {
// this.age = age;
// }
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
// public String getTimestamp() {
// return timestamp;
// }
//
// public void setTimestamp(String timestamp) {
// this.timestamp = timestamp;
// }
@Override
public String toString() {
return "UserInfo [userId=" + userId + ", openid=" + openid + ", headImgUrl=" + headImgUrl + ", nickName="
+ nickName + ", companyId=" + companyId + ", agentCode=" + agentCode + ", userName=" + userName
+ ", idType=" + idType + ", idNo=" + idNo + ", gender=" + gender + ", userPosition=" + userPosition
+ ", birthday=" + birthday + ", education=" + education + ", mobile=" + mobile + ", userEmail="
+ userEmail + ", province=" + province + ", city=" + city + ", area=" + area + ", refereeUserid="
+ refereeUserid + ", state=" + state + ", createUser=" + createUser + ", createTime=" + createTime
+ ", updateTime=" + updateTime + ", updateRemark=" + updateRemark + ", source=" + source
+ "]";//, timestamp=" + timestamp + ", age=" + age + "]";
}
}

View File

@ -0,0 +1,28 @@
package com.ruoyi.content.domain;
public class UserInfoDTO {
private String userId;
private String openID;
private String companyId;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getOpenID() {
return openID;
}
public void setOpenID(String openID) {
this.openID = openID;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,99 @@
package com.ruoyi.content.domain;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* 用户微信基本信息
*
* @author liu.hx
* @date 2018年4月3日
*
*/
public class WxUserInfoDto implements Serializable{
private static final long serialVersionUID = -2402610715101110825L;
private String subscribe; //关注公众号标识 用户是否订阅该公众号标识值为0时代表此用户没有关注该公众号拉取不到其余信息
private String openid; //用户openid
@JsonProperty("nickname")
private String nickName; //用户的昵称
private String sex; //用户的性别 值为1时是男性值为2时是女性值为0时是未知
private String city; //用户所在城市
private String country; //用户所在国家
private String province; //用户所在省份
private String language; //用户的语言
@JsonProperty("headimgurl")
private String headImgUrl; //用户头像
@JsonProperty("groupid")
private String groupId; //用户所在的分组
@Override
public String toString() {
return "WxUserInfoDto [subscribe=" + subscribe + ", openid=" + openid + ", nickName=" + nickName + ", sex="
+ sex + ", city=" + city + ", country=" + country + ", province=" + province + ", language=" + language
+ ", headImgUrl=" + headImgUrl + ", groupId=" + groupId + "]";
}
public String getSubscribe() {
return subscribe;
}
public void setSubscribe(String subscribe) {
this.subscribe = subscribe;
}
public String getOpenid() {
return openid;
}
public void setOpenid(String openid) {
this.openid = openid;
}
public String getNickName() {
return nickName;
}
public void setNickName(String nickName) {
this.nickName = nickName;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public String getProvince() {
return province;
}
public void setProvince(String province) {
this.province = province;
}
public String getLanguage() {
return language;
}
public void setLanguage(String language) {
this.language = language;
}
public String getHeadImgUrl() {
return headImgUrl;
}
public void setHeadImgUrl(String headImgUrl) {
this.headImgUrl = headImgUrl;
}
public String getGroupId() {
return groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
}

View File

@ -0,0 +1,61 @@
package com.ruoyi.content.domain;
import java.io.Serializable;
/**
* 文章转发用户记录
*
* @author
* @date 2018年4月16日
*
*/
public class YwyForwardUserInfo implements Serializable{
private static final long serialVersionUID = 3152100900712336169L;
private String userId;
private String articleId;
private String headImgUrl;
private String nickName;
private String createDate;
private String createUser;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getArticleId() {
return articleId;
}
public void setArticleId(String articleId) {
this.articleId = articleId;
}
public String getHeadImgUrl() {
return headImgUrl;
}
public void setHeadImgUrl(String headImgUrl) {
this.headImgUrl = headImgUrl;
}
public String getNickName() {
return nickName;
}
public void setNickName(String nickName) {
this.nickName = nickName;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getCreateUser() {
return createUser;
}
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
}

View File

@ -0,0 +1,74 @@
package com.ruoyi.content.domain;
import java.io.Serializable;
/**
* 文章转发用户记录
*
* @author
* @date 2018年4月16日
*
*/
public class YwyPublishInfo implements Serializable{
private static final long serialVersionUID = 3152100900712336169L;
private String clickId;
private String openId;
private String watchTime;
private String shareState;
private String clickDate;
private String clickTime;
private String clientNickName;
private String clientHeadImgurl;
public String getClickId() {
return clickId;
}
public void setClickId(String clickId) {
this.clickId = clickId;
}
public String getOpenId() {
return openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getWatchTime() {
return watchTime;
}
public void setWatchTime(String watchTime) {
this.watchTime = watchTime;
}
public String getShareState() {
return shareState;
}
public void setShareState(String shareState) {
this.shareState = shareState;
}
public String getClickDate() {
return clickDate;
}
public void setClickDate(String clickDate) {
this.clickDate = clickDate;
}
public String getClickTime() {
return clickTime;
}
public void setClickTime(String clickTime) {
this.clickTime = clickTime;
}
public String getClientNickName() {
return clientNickName;
}
public void setClientNickName(String clientNickName) {
this.clientNickName = clientNickName;
}
public String getClientHeadImgurl() {
return clientHeadImgurl;
}
public void setClientHeadImgurl(String clientHeadImgurl) {
this.clientHeadImgurl = clientHeadImgurl;
}
}

View File

@ -0,0 +1,24 @@
package com.ruoyi.content.exception;
/**
* 自定义请求返回超时异常
*
* @author zhanghe
*/
public class MyTimeoutException extends RuntimeException {
private static final long serialVersionUID = -4725428316233745222L;
public MyTimeoutException() {
super("读取请求返回信息超时");
}
public MyTimeoutException(String message) {
super(message);
}
public MyTimeoutException(String message, Throwable cause) {
super(message, cause);
}
}

View File

@ -0,0 +1,99 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.AdvertisementInfo;
import com.ruoyi.content.domain.AdvertisementInfoExample;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface AdvertisementInfoMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table advertisement_info
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
int countByExample(AdvertisementInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table advertisement_info
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
int deleteByExample(AdvertisementInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table advertisement_info
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
int deleteByPrimaryKey(Integer adId);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table advertisement_info
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
int insert(AdvertisementInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table advertisement_info
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
int insertSelective(AdvertisementInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table advertisement_info
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
List<AdvertisementInfo> selectByExample(AdvertisementInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table advertisement_info
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
AdvertisementInfo selectByPrimaryKey(Integer adId);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table advertisement_info
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
int updateByExampleSelective(@Param("record") AdvertisementInfo record, @Param("example") AdvertisementInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table advertisement_info
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
int updateByExample(@Param("record") AdvertisementInfo record, @Param("example") AdvertisementInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table advertisement_info
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
int updateByPrimaryKeySelective(AdvertisementInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table advertisement_info
*
* @mbggenerated Mon Mar 26 15:46:22 CST 2018
*/
int updateByPrimaryKey(AdvertisementInfo record);
}

View File

@ -0,0 +1,32 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticeClickInfoExDTO;
import com.ruoyi.content.domain.ArticleinfoExDTO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticeClickInfoExMapper {
//用户浏览分享信息List
public List<ArticeClickInfoExDTO> queryClerkArticleInfo(@Param(value = "companyId") String companyId, @Param(value = "articleId") String articleId,
@Param(value = "startRow") int startRow, @Param(value = "rows") int rows);
///用户浏览分享信息总数
public int clerkArticleCount(@Param(value = "companyId") String companyId, @Param(value = "articleId") String articleId);
public List<ArticleinfoExDTO> queryArticleInfoList(@Param(value = "companyId") String companyId,
@Param(value = "articelName") String articelName, @Param(value = "articelAuthor") String articelAuthor,
@Param(value = "channelId") String channelId, @Param(value = "special") String special,
@Param(value = "startRow") int startRow, @Param(value = "rows") int rows);
public int articleInfoCount(@Param(value = "companyId") String companyId,
@Param(value = "articelName") String articelName, @Param(value = "articelAuthor") String articelAuthor,
@Param(value = "channelId") String channelId, @Param(value = "special") String special);
//查询业务员文章信息
public ArticleinfoExDTO selClerkArticleContent(@Param(value = "companyId") String companyId,
@Param(value = "articleId") String articleId);
}

View File

@ -0,0 +1,99 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticleAdInfo;
import com.ruoyi.content.domain.ArticleAdInfoExample;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticleAdInfoMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_ad_info
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
int countByExample(ArticleAdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_ad_info
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
int deleteByExample(ArticleAdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_ad_info
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
int deleteByPrimaryKey(Integer adId);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_ad_info
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
int insert(ArticleAdInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_ad_info
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
int insertSelective(ArticleAdInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_ad_info
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
List<ArticleAdInfo> selectByExample(ArticleAdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_ad_info
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
ArticleAdInfo selectByPrimaryKey(Integer adId);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_ad_info
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
int updateByExampleSelective(@Param("record") ArticleAdInfo record, @Param("example") ArticleAdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_ad_info
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
int updateByExample(@Param("record") ArticleAdInfo record, @Param("example") ArticleAdInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_ad_info
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
int updateByPrimaryKeySelective(ArticleAdInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_ad_info
*
* @mbggenerated Thu Aug 02 14:00:18 CST 2018
*/
int updateByPrimaryKey(ArticleAdInfo record);
}

View File

@ -0,0 +1,16 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticleAdInfo;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticleAdQueryMapper {
List<ArticleAdInfo> queryAdByCompanyId(@Param("companyId") String companyId);
List<ArticleAdInfo> selectAllWithLimit(@Param(value = "companyId") String companyId, @Param(value = "adTitle") String adTitle,
@Param(value = "startRow") int startRow, @Param(value = "rows") int rows);
}

View File

@ -0,0 +1,99 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticleChannel;
import com.ruoyi.content.domain.ArticleChannelExample;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticleChannelMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_channel
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
int countByExample(ArticleChannelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_channel
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
int deleteByExample(ArticleChannelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_channel
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_channel
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
int insert(ArticleChannel record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_channel
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
int insertSelective(ArticleChannel record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_channel
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
List<ArticleChannel> selectByExample(ArticleChannelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_channel
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
ArticleChannel selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_channel
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
int updateByExampleSelective(@Param("record") ArticleChannel record, @Param("example") ArticleChannelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_channel
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
int updateByExample(@Param("record") ArticleChannel record, @Param("example") ArticleChannelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_channel
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
int updateByPrimaryKeySelective(ArticleChannel record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_channel
*
* @mbggenerated Wed Mar 06 16:10:09 CST 2019
*/
int updateByPrimaryKey(ArticleChannel record);
}

View File

@ -0,0 +1,67 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticleChannel;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.HashMap;
import java.util.List;
@Repository
public interface ArticleChannelQueryMapper {
/**
* 查询文库表全部信息
*
* @param companyId
* @param startRow
* @param rows
* @return
*/
public List<ArticleChannel> selectAllWithLimit(@Param(value = "companyId") String companyId, @Param(value = "branchId") String branchId,
@Param(value = "articleState") List<String> articleState, @Param(value = "startRow") int startRow,
@Param(value = "rows") int rows, @Param(value = "articelName") String articelName,
@Param(value = "special") String special, @Param(value = "channel") String channel);
/**
* 根据文章id查文章修改路径
*
* @param articleId
* @return
*/
String queryModifiedEditUrlByArticleId(String articleId);
/**
* 根据栏目查文章ID
*
* @param channel
* @return
*/
List<Integer> queryArticleIdByChannel(@Param(value = "channel") String channel);
/**
* 根据文章id查文库关系
*
* @return
*/
public List<ArticleChannel> queryByPublishId(String publishId);
/*
* 分页查询文库表信息
*/
public List<HashMap<String, Object>> selectByLimit(HashMap<String, Object> map);
public List<HashMap<String, Object>> selectCountByParam(HashMap<String, Object> parMap);
/**
* 批量收录文章
*
* @param batchInsertArticle
* @return
*/
public int batchInsertArticeChannel(@Param(value = "batchInsertArticle") List<ArticleChannel> batchInsertArticle);
public List<HashMap<String, Object>> selectByPublishList(@Param(value = "publishList") List<String> publishList);
}

View File

@ -0,0 +1,100 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticleForwardTrack;
import com.ruoyi.content.domain.ArticleForwardTrackExample;
import com.ruoyi.content.domain.ArticleForwardTrackKey;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticleForwardTrackMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_forward_track
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
int countByExample(ArticleForwardTrackExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_forward_track
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
int deleteByExample(ArticleForwardTrackExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_forward_track
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
int deleteByPrimaryKey(ArticleForwardTrackKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_forward_track
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
int insert(ArticleForwardTrack record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_forward_track
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
int insertSelective(ArticleForwardTrack record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_forward_track
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
List<ArticleForwardTrack> selectByExample(ArticleForwardTrackExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_forward_track
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
ArticleForwardTrack selectByPrimaryKey(ArticleForwardTrackKey key);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_forward_track
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
int updateByExampleSelective(@Param("record") ArticleForwardTrack record, @Param("example") ArticleForwardTrackExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_forward_track
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
int updateByExample(@Param("record") ArticleForwardTrack record, @Param("example") ArticleForwardTrackExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_forward_track
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
int updateByPrimaryKeySelective(ArticleForwardTrack record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_forward_track
*
* @mbggenerated Fri Jul 06 14:53:46 CST 2018
*/
int updateByPrimaryKey(ArticleForwardTrack record);
}

View File

@ -0,0 +1,123 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticleInfo;
import com.ruoyi.content.domain.ArticleInfoExample;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticleInfoMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
int countByExample(ArticleInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
int deleteByExample(ArticleInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
int deleteByPrimaryKey(Integer articleId);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
int insert(ArticleInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
int insertSelective(ArticleInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
List<ArticleInfo> selectByExampleWithBLOBs(ArticleInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
List<ArticleInfo> selectByExample(ArticleInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
ArticleInfo selectByPrimaryKey(Integer articleId);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
int updateByExampleSelective(@Param("record") ArticleInfo record, @Param("example") ArticleInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
int updateByExampleWithBLOBs(@Param("record") ArticleInfo record, @Param("example") ArticleInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
int updateByExample(@Param("record") ArticleInfo record, @Param("example") ArticleInfoExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
int updateByPrimaryKeySelective(ArticleInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
int updateByPrimaryKeyWithBLOBs(ArticleInfo record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_info
*
* @mbggenerated Fri May 25 15:02:37 CST 2018
*/
int updateByPrimaryKey(ArticleInfo record);
}

View File

@ -0,0 +1,99 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticleLabel;
import com.ruoyi.content.domain.ArticleLabelExample;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticleLabelMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
int countByExample(ArticleLabelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
int deleteByExample(ArticleLabelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
int deleteByPrimaryKey(Integer labelId);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
int insert(ArticleLabel record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
int insertSelective(ArticleLabel record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
List<ArticleLabel> selectByExample(ArticleLabelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
ArticleLabel selectByPrimaryKey(Integer labelId);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
int updateByExampleSelective(@Param("record") ArticleLabel record, @Param("example") ArticleLabelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
int updateByExample(@Param("record") ArticleLabel record, @Param("example") ArticleLabelExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
int updateByPrimaryKeySelective(ArticleLabel record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label
*
* @mbggenerated
*/
int updateByPrimaryKey(ArticleLabel record);
}

View File

@ -0,0 +1,99 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticleLabelRelationship;
import com.ruoyi.content.domain.ArticleLabelRelationshipExample;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticleLabelRelationshipMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
int countByExample(ArticleLabelRelationshipExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
int deleteByExample(ArticleLabelRelationshipExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
int insert(ArticleLabelRelationship record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
int insertSelective(ArticleLabelRelationship record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
List<ArticleLabelRelationship> selectByExample(ArticleLabelRelationshipExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
ArticleLabelRelationship selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
int updateByExampleSelective(@Param("record") ArticleLabelRelationship record, @Param("example") ArticleLabelRelationshipExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
int updateByExample(@Param("record") ArticleLabelRelationship record, @Param("example") ArticleLabelRelationshipExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
int updateByPrimaryKeySelective(ArticleLabelRelationship record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_label_relationship
*
* @mbggenerated
*/
int updateByPrimaryKey(ArticleLabelRelationship record);
}

View File

@ -0,0 +1,100 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticlePersonalConfig;
import com.ruoyi.content.domain.ArticlePersonalConfigExample;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticlePersonalConfigMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
int countByExample(ArticlePersonalConfigExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
int deleteByExample(ArticlePersonalConfigExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
int insert(ArticlePersonalConfig record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
int insertSelective(ArticlePersonalConfig record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
List<ArticlePersonalConfig> selectByExample(ArticlePersonalConfigExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
ArticlePersonalConfig selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
int updateByExampleSelective(@Param("record") ArticlePersonalConfig record, @Param("example") ArticlePersonalConfigExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
int updateByExample(@Param("record") ArticlePersonalConfig record, @Param("example") ArticlePersonalConfigExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
int updateByPrimaryKeySelective(ArticlePersonalConfig record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_personal_config
*
* @mbggenerated Wed May 20 09:55:58 CST 2020
*/
int updateByPrimaryKey(ArticlePersonalConfig record);
}

View File

@ -0,0 +1,100 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticlePublishSend;
import com.ruoyi.content.domain.ArticlePublishSendExample;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticlePublishSendMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_send
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
int countByExample(ArticlePublishSendExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_send
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
int deleteByExample(ArticlePublishSendExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_send
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
int deleteByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_send
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
int insert(ArticlePublishSend record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_send
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
int insertSelective(ArticlePublishSend record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_send
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
List<ArticlePublishSend> selectByExample(ArticlePublishSendExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_send
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
ArticlePublishSend selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_send
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
int updateByExampleSelective(@Param("record") ArticlePublishSend record, @Param("example") ArticlePublishSendExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_send
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
int updateByExample(@Param("record") ArticlePublishSend record, @Param("example") ArticlePublishSendExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_send
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
int updateByPrimaryKeySelective(ArticlePublishSend record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_send
*
* @mbggenerated Thu Jun 04 15:03:08 CST 2020
*/
int updateByPrimaryKey(ArticlePublishSend record);
}

View File

@ -0,0 +1,99 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticlePublishTrack;
import com.ruoyi.content.domain.ArticlePublishTrackExample;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticlePublishTrackMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_track
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
int countByExample(ArticlePublishTrackExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_track
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
int deleteByExample(ArticlePublishTrackExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_track
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
int deleteByPrimaryKey(String publishId);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_track
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
int insert(ArticlePublishTrack record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_track
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
int insertSelective(ArticlePublishTrack record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_track
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
List<ArticlePublishTrack> selectByExample(ArticlePublishTrackExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_track
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
ArticlePublishTrack selectByPrimaryKey(String publishId);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_track
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
int updateByExampleSelective(@Param("record") ArticlePublishTrack record, @Param("example") ArticlePublishTrackExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_track
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
int updateByExample(@Param("record") ArticlePublishTrack record, @Param("example") ArticlePublishTrackExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_track
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
int updateByPrimaryKeySelective(ArticlePublishTrack record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table article_publish_track
*
* @mbggenerated Fri Jul 27 10:31:00 CST 2018
*/
int updateByPrimaryKey(ArticlePublishTrack record);
}

View File

@ -0,0 +1,46 @@
package com.ruoyi.content.mapper;
import com.ruoyi.content.domain.ArticlePublishTrack;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ArticlePublishTrackQueryMapper {
/**
* @return
*/
ArticlePublishTrack queryEditUrlByArticleId(String articleId, String puhlishId);
/**
* 根据文章id查询发布该文章的所有业务员信息
*
* @param articleId
* @return
*/
List<ArticlePublishTrack> queryPublishUserInfo(@Param(value = "articleId") String articleId,
@Param(value = "startRow") int startRow, @Param(value = "rows") int rows);
List<ArticlePublishTrack> queryArticleIdByUserId(@Param(value = "userId") List<String> userId,
@Param(value = "startRow") int startRow, @Param(value = "rows") int rows);
int countArticleIdByUserId(@Param(value = "userId") List<String> userId);
/**
* 根据publishid查询发布表记录
*
* @param publishId
* @return
*/
ArticlePublishTrack queryByPublishId(@Param(value = "publishId") String publishId);
/**
* 查询文章列表的文章信息
*
* @param articleId
* @return
*/
List<ArticlePublishTrack> queryArticleinfo(@Param(value = "articleId") String articleId);
}

Some files were not shown because too many files have changed in this diff Show More