⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 artindexdto.java

📁 前台:文章浏览、发表留言、Game、Music 后台:文章相关:发表文章、修改文章、删除文章、批量移动文章 栏目相关:增加栏目、修改栏目、删除栏目、栏目链接、栏目排序系统栏目分为系统内部栏目和外部栏目
💻 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 + -