📄 artindexdto.java
字号:
package com.yhcms.article.dto;
/**
* <p>Title:系统文章属性类</p>
* <li>显示文章链接时文章的部分属性,该类只有文章Id,标题,作者,录入时间和阅读次数</li>
* <b>CopyRight: yyhweb[由由华网]</b>
* @author stephen
* @version YH-2.0
*/
public class ArtIndexDto {
private int id = 0;
private String ftitle = "";
private String ftime;
/** 取得文章Id
* @return 文章Id
* */
public int getId(){
return id;
}
/** 设置文章Id
* @param id 文章Id
*/
public void setId(int id){
this.id = id;
}
/**
* @return 文章主标题
*/
public String getFtitle(){
return ftitle;
}
/** 设置文章主标题
* @param firsttitle 文章主标题
*/
public void setFtitle(String ftitle){
this.ftitle = ftitle;
}
/**
* @return 文章第一次录入时间
*/
public String getFtime(){
return ftime;
}
/** 设置文章第一次录入时间
* @param fdatetime 文章第一次录入时间
*/
public void setFtime(String ftime){
this.ftime = ftime;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -