城阳车管所项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
389 B

7 years ago
package net.mingsoft.cms.bean;
import net.mingsoft.cms.entity.ContentEntity;
7 years ago
/**
* 文章实体bean
*/
public class ContentBean extends ContentEntity {
7 years ago
/**
* 静态化地址
*/
private String staticUrl;
7 years ago
public String getStaticUrl() {
return staticUrl;
}
public void setStaticUrl(String staticUrl) {
this.staticUrl = staticUrl;
}
}