# Conflicts: # src/main/java/net/mingsoft/cms/util/CmsParserUtil.javamaster
commit
c68b5d25c2
10 changed files with 101 additions and 48 deletions
@ -0,0 +1,28 @@ |
|||||||
|
package net.mingsoft.cms.bean; |
||||||
|
|
||||||
|
import net.mingsoft.cms.entity.CategoryEntity; |
||||||
|
|
||||||
|
/** |
||||||
|
* 文章实体 |
||||||
|
* @author 铭飞开发团队 |
||||||
|
* 创建日期:2019-11-28 15:12:32<br/> |
||||||
|
* 历史修订:<br/> |
||||||
|
*/ |
||||||
|
public class CategoryBean extends CategoryEntity { |
||||||
|
|
||||||
|
/** |
||||||
|
* 文章编号 |
||||||
|
*/ |
||||||
|
private int articleId; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public int getArticleId() { |
||||||
|
return articleId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setArticleId(int articleId) { |
||||||
|
this.articleId = articleId; |
||||||
|
} |
||||||
|
} |
||||||
@ -1,25 +1,23 @@ |
|||||||
package net.mingsoft.cms.bean; |
package net.mingsoft.cms.bean; |
||||||
|
|
||||||
import net.mingsoft.cms.entity.CategoryEntity; |
import net.mingsoft.cms.entity.ContentEntity; |
||||||
|
|
||||||
/** |
/** |
||||||
* 文章实体 |
* 文章实体bean |
||||||
* @author 铭飞开发团队 |
|
||||||
* 创建日期:2019-11-28 15:12:32<br/> |
|
||||||
* 历史修订:<br/> |
|
||||||
*/ |
*/ |
||||||
public class ContentBean extends CategoryEntity { |
public class ContentBean extends ContentEntity { |
||||||
|
|
||||||
/** |
/** |
||||||
* 文章编号 |
* 静态化地址 |
||||||
*/ |
*/ |
||||||
private int articleId; |
private String staticUrl; |
||||||
|
|
||||||
public int getArticleId() { |
|
||||||
return articleId; |
public String getStaticUrl() { |
||||||
|
return staticUrl; |
||||||
} |
} |
||||||
|
|
||||||
public void setArticleId(int articleId) { |
public void setStaticUrl(String staticUrl) { |
||||||
this.articleId = articleId; |
this.staticUrl = staticUrl; |
||||||
} |
} |
||||||
} |
} |
||||||
Loading…
Reference in new issue