mirror of
https://github.com/201206030/novel-plus.git
synced 2025-06-15 09:38:29 +00:00
59 lines
1.5 KiB
Java
59 lines
1.5 KiB
Java
package com.java2nb.novel.entity;
|
|
|
|
|
|
import java.util.Date;
|
|
import javax.annotation.Generated;
|
|
|
|
public class UserFeedback {
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Long id;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Long userId;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private String content;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Date createTime;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Long getUserId() {
|
|
return userId;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setUserId(Long userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setContent(String content) {
|
|
this.content = content == null ? null : content.trim();
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
} |