Commit acc5c7e5 by rongkailun

文章管理新增逻辑修改

parent 0037833c
......@@ -107,7 +107,7 @@ public class NewsController extends AbstractController {
}
/**
* 删除
* 审核
*/
@PostMapping("/verifyNews")
// @RequiresPermissions("manage:news:verify")
......
......@@ -98,6 +98,8 @@ public class NewsEntity implements Serializable {
* 分类id
*/
private Integer classid;
private Integer cclassid;
/**
* 出版时间
*/
......
......@@ -47,6 +47,10 @@ public class NewsServiceImpl extends ServiceImpl<NewsDao, NewsEntity> implements
news.setLasteditor(user.getUsername());
news.setStartdate(new Date());
news.setPublicdate(new Date());
//二级栏目不为空时 classid取值二级栏目id值
if(news.getCclassid() !=null){
news.setClassid(news.getCclassid());
}
int insert = baseMapper.insert(news);
if (insert>0){
return R.ok("新增成功!");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment