|
@@ -13,6 +13,7 @@ public class TechnicalArticlesPO {
|
|
|
|
|
|
@Id
|
|
|
@Column(name = "TA_ID")
|
|
|
+ @GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
|
private Long id;
|
|
|
|
|
|
@Column(name = "TA_TITLE")
|
|
@@ -30,70 +31,6 @@ public class TechnicalArticlesPO {
|
|
|
@Column(name = "TA_SOURCE")
|
|
|
private String source;
|
|
|
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
-
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPhotoUrl() {
|
|
|
- return photoUrl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPhotoUrl(String photoUrl) {
|
|
|
- this.photoUrl = photoUrl;
|
|
|
- }
|
|
|
-
|
|
|
- public String getArticlesUrl() {
|
|
|
- return articlesUrl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setArticlesUrl(String articlesUrl) {
|
|
|
- this.articlesUrl = articlesUrl;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAuthor() {
|
|
|
- return author;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAuthor(String author) {
|
|
|
- this.author = author;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSource() {
|
|
|
- return source;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSource(String source) {
|
|
|
- this.source = source;
|
|
|
- }
|
|
|
-
|
|
|
- public int getReading() {
|
|
|
- return reading;
|
|
|
- }
|
|
|
-
|
|
|
- public void setReading(int reading) {
|
|
|
- this.reading = reading;
|
|
|
- }
|
|
|
-
|
|
|
- public Timestamp getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(Timestamp createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
-
|
|
|
@Column(name = "TA_READING")
|
|
|
private int reading;
|
|
|
|