保存和发布文章时的status保存
This commit is contained in:
parent
2c0f9029a6
commit
f10f514c0c
|
|
@ -182,6 +182,8 @@ public class NewsController {
|
|||
return ResultObject.failed(500, "服务端错误,请联系系统管理员!");
|
||||
}
|
||||
|
||||
// 这个接口是保存,那status应该是1,未发布
|
||||
saveNewsDTO.setStatus(1);
|
||||
return newsService.saveDraft(saveNewsDTO);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -71,8 +71,8 @@ public interface NewsMapper {
|
|||
"values (#{title}, #{summary}, #{picture}, #{type}, #{content}, now(), now())")
|
||||
void saveDraft(NewsDraft newsDraft);
|
||||
|
||||
@Insert("insert into news(draft_id, title, summary, picture, type, content, create_time, update_time)" +
|
||||
"values (#{draftId}, #{title}, #{summary}, #{picture}, #{type}, #{content}, now(), now())")
|
||||
@Insert("insert into news(draft_id, title, summary, picture, type, content, create_time, update_time, status)" +
|
||||
"values (#{draftId}, #{title}, #{summary}, #{picture}, #{type}, #{content}, now(), now(), #{status})")
|
||||
void saveNews(News news);
|
||||
|
||||
@Select("<script>" +
|
||||
|
|
|
|||
|
|
@ -78,8 +78,9 @@ public class News {
|
|||
this.summary = saveNewsDTO.getSummary();
|
||||
this.picture = saveNewsDTO.getPicture();
|
||||
this.type = 1;
|
||||
this.status = saveNewsDTO.getStatus();
|
||||
this.content = saveNewsDTO.getContent();
|
||||
this.status = 0;
|
||||
// this.status = 0;
|
||||
this.createTime = new Date();
|
||||
this.updateTime = new Date();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,6 +34,10 @@ public class NewsDraft {
|
|||
* 新闻类型 0-普通 | 1-vip
|
||||
*/
|
||||
private Integer type;
|
||||
/**
|
||||
* 状态 0:草稿 1:未发布 2:已发布
|
||||
*/
|
||||
private Integer status;
|
||||
|
||||
/**
|
||||
* H5富文本
|
||||
|
|
@ -58,6 +62,7 @@ public class NewsDraft {
|
|||
this.summary = saveNewsDTO.getSummary();
|
||||
this.picture = saveNewsDTO.getPicture();
|
||||
this.type = 1;
|
||||
this.status = saveNewsDTO.getStatus();
|
||||
this.content = saveNewsDTO.getContent();
|
||||
this.createTime = new Date();
|
||||
this.updateTime = new Date();
|
||||
|
|
|
|||
|
|
@ -176,7 +176,7 @@ public class NewsService {
|
|||
if (!CollectionUtils.isEmpty(columnRelList)) {
|
||||
for (NewsColumnRel rel : columnRelList) {
|
||||
Long columnId = rel.getColumnId();
|
||||
int type = rel.getType();
|
||||
Integer type = rel.getType();
|
||||
if (columnId == 13) {
|
||||
SaveDraftColumnItem item = new SaveDraftColumnItem();
|
||||
newsDetailColumn.setEarlyKnow(item);
|
||||
|
|
|
|||
Loading…
Reference in New Issue