📄 article.java
字号:
/**
* 存储每次抓取的数量
*/
package com.leo.po;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
/**
* @author superleo
*
*/
@Entity
@Table(name = "tbl_article")
public class Article extends PrimaryEntity {
/**
* 文章点击量
*/
@Column(name = "count_size")
private int count;
/**
* 文章建立时间
*/
@Column(name = "create_date")
private Date createDate;
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -