|
|
@ -11,7 +11,7 @@ import com.chenhai.common.core.domain.BaseEntity; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 反馈建议对象 muhu_feedback |
|
|
* 反馈建议对象 muhu_feedback |
|
|
* |
|
|
|
|
|
|
|
|
* |
|
|
* @author ruoyi |
|
|
* @author ruoyi |
|
|
* @date 2026-02-10 |
|
|
* @date 2026-02-10 |
|
|
*/ |
|
|
*/ |
|
|
@ -75,132 +75,135 @@ public class MuhuFeedback extends BaseEntity |
|
|
/** 用户昵称 */ |
|
|
/** 用户昵称 */ |
|
|
private String nickName; |
|
|
private String nickName; |
|
|
|
|
|
|
|
|
public void setId(Long id) |
|
|
|
|
|
|
|
|
/** 用户头像 */ |
|
|
|
|
|
private String avatar; |
|
|
|
|
|
|
|
|
|
|
|
public void setId(Long id) |
|
|
{ |
|
|
{ |
|
|
this.id = id; |
|
|
this.id = id; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public Long getId() |
|
|
|
|
|
|
|
|
public Long getId() |
|
|
{ |
|
|
{ |
|
|
return id; |
|
|
return id; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setUserId(Long userId) |
|
|
|
|
|
|
|
|
public void setUserId(Long userId) |
|
|
{ |
|
|
{ |
|
|
this.userId = userId; |
|
|
this.userId = userId; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public Long getUserId() |
|
|
|
|
|
|
|
|
public Long getUserId() |
|
|
{ |
|
|
{ |
|
|
return userId; |
|
|
return userId; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setType(String type) |
|
|
|
|
|
|
|
|
public void setType(String type) |
|
|
{ |
|
|
{ |
|
|
this.type = type; |
|
|
this.type = type; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getType() |
|
|
|
|
|
|
|
|
public String getType() |
|
|
{ |
|
|
{ |
|
|
return type; |
|
|
return type; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setTitle(String title) |
|
|
|
|
|
|
|
|
public void setTitle(String title) |
|
|
{ |
|
|
{ |
|
|
this.title = title; |
|
|
this.title = title; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getTitle() |
|
|
|
|
|
|
|
|
public String getTitle() |
|
|
{ |
|
|
{ |
|
|
return title; |
|
|
return title; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setContent(String content) |
|
|
|
|
|
|
|
|
public void setContent(String content) |
|
|
{ |
|
|
{ |
|
|
this.content = content; |
|
|
this.content = content; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getContent() |
|
|
|
|
|
|
|
|
public String getContent() |
|
|
{ |
|
|
{ |
|
|
return content; |
|
|
return content; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setContactInfo(String contactInfo) |
|
|
|
|
|
|
|
|
public void setContactInfo(String contactInfo) |
|
|
{ |
|
|
{ |
|
|
this.contactInfo = contactInfo; |
|
|
this.contactInfo = contactInfo; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getContactInfo() |
|
|
|
|
|
|
|
|
public String getContactInfo() |
|
|
{ |
|
|
{ |
|
|
return contactInfo; |
|
|
return contactInfo; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setStatus(String status) |
|
|
|
|
|
|
|
|
public void setStatus(String status) |
|
|
{ |
|
|
{ |
|
|
this.status = status; |
|
|
this.status = status; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getStatus() |
|
|
|
|
|
|
|
|
public String getStatus() |
|
|
{ |
|
|
{ |
|
|
return status; |
|
|
return status; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setPriority(String priority) |
|
|
|
|
|
|
|
|
public void setPriority(String priority) |
|
|
{ |
|
|
{ |
|
|
this.priority = priority; |
|
|
this.priority = priority; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getPriority() |
|
|
|
|
|
|
|
|
public String getPriority() |
|
|
{ |
|
|
{ |
|
|
return priority; |
|
|
return priority; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setPlatform(String platform) |
|
|
|
|
|
|
|
|
public void setPlatform(String platform) |
|
|
{ |
|
|
{ |
|
|
this.platform = platform; |
|
|
this.platform = platform; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getPlatform() |
|
|
|
|
|
|
|
|
public String getPlatform() |
|
|
{ |
|
|
{ |
|
|
return platform; |
|
|
return platform; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setVersion(String version) |
|
|
|
|
|
|
|
|
public void setVersion(String version) |
|
|
{ |
|
|
{ |
|
|
this.version = version; |
|
|
this.version = version; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getVersion() |
|
|
|
|
|
|
|
|
public String getVersion() |
|
|
{ |
|
|
{ |
|
|
return version; |
|
|
return version; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setImages(String images) |
|
|
|
|
|
|
|
|
public void setImages(String images) |
|
|
{ |
|
|
{ |
|
|
this.images = images; |
|
|
this.images = images; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public String getImages() |
|
|
|
|
|
|
|
|
public String getImages() |
|
|
{ |
|
|
{ |
|
|
return images; |
|
|
return images; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setCreatedAt(Date createdAt) |
|
|
|
|
|
|
|
|
public void setCreatedAt(Date createdAt) |
|
|
{ |
|
|
{ |
|
|
this.createdAt = createdAt; |
|
|
this.createdAt = createdAt; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public Date getCreatedAt() |
|
|
|
|
|
|
|
|
public Date getCreatedAt() |
|
|
{ |
|
|
{ |
|
|
return createdAt; |
|
|
return createdAt; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setUpdatedAt(Date updatedAt) |
|
|
|
|
|
|
|
|
public void setUpdatedAt(Date updatedAt) |
|
|
{ |
|
|
{ |
|
|
this.updatedAt = updatedAt; |
|
|
this.updatedAt = updatedAt; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public Date getUpdatedAt() |
|
|
|
|
|
|
|
|
public Date getUpdatedAt() |
|
|
{ |
|
|
{ |
|
|
return updatedAt; |
|
|
return updatedAt; |
|
|
} |
|
|
} |
|
|
@ -215,6 +218,16 @@ public class MuhuFeedback extends BaseEntity |
|
|
return nickName; |
|
|
return nickName; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setAvatar(String avatar) |
|
|
|
|
|
{ |
|
|
|
|
|
this.avatar = avatar; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public String getAvatar() |
|
|
|
|
|
{ |
|
|
|
|
|
return avatar; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public String toString() { |
|
|
public String toString() { |
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
@ -232,6 +245,7 @@ public class MuhuFeedback extends BaseEntity |
|
|
.append("createdAt", getCreatedAt()) |
|
|
.append("createdAt", getCreatedAt()) |
|
|
.append("updatedAt", getUpdatedAt()) |
|
|
.append("updatedAt", getUpdatedAt()) |
|
|
.append("nickName", getNickName()) |
|
|
.append("nickName", getNickName()) |
|
|
|
|
|
.append("avatar",getAvatar()) |
|
|
.toString(); |
|
|
.toString(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |