Id String 主键Id commentId String 评论ID commentUserId String 评论人ID commetntUserName String 评论人昵称 commentContent String 短评内容 commentPic String 短评图片 commentSource String 评论来源 commentType String 评论类型 mId Long 媒资ID commentSourceGrade int 平台等级 eg.:1 :一级平台 ; 2:二级平台 commentType String 评论类型 eg.:用户评论 pId String 节目ID reportReason String 被举报原因 reportUserId String 举报人Id reportUserName String 举报人昵称 createTime Date 评论举报时间 dealTime Date 评论举报审核处理时间 updateTime Date 评论举报修改时间 auditStatus int 审核状态查询 0:待审核 1:已审已处置 2:已审不处置 isDelete String 是否查询被移除内容: 0:查询被移除内容 1:不查询被移除内容 默认为 1:不查询移除内容 定义这个实体类
时间: 2024-02-17 12:02:01 浏览: 85
已经在前面回答了,这是实体类的定义:
```java
public class CommentReport {
private String id;
private String commentId;
private String commentUserId;
private String commetntUserName;
private String commentContent;
private String commentPic;
private String commentSource;
private String commentType;
private Long mId;
private int commentSourceGrade;
private String pId;
private String reportReason;
private String reportUserId;
private String reportUserName;
private Date createTime;
private Date dealTime;
private Date updateTime;
private int auditStatus;
private String isDelete;
// 构造函数、getter和setter方法、toString方法等省略
}
```
相关问题
commentId String 否 评论ID commentUserId String 否 评论人ID commetntUserName String 否 评论人昵称 commentContent String 否 短评内容 commentPic String 否 短评图片 commentSource String 否 评论来源 commentType String 否 评论类型 mId Long 否 媒资ID reportReason String 否 被举报原因 reportUserId String 否 举报人Id reportUserName String 否 举报人昵称 createTime Date 否 评论举报时间 dealTime Date 否 评论举报处理时间 auditStatus int 否 根据审核状态查询 0:待审核 1:已审已处置 2:已审不处置 isDelete String 否 是否查询被移除内容: 0:查询被移除内容 1:不查询被移除内容 默认为 1:不查询移除内容 根据这些字段生成一个对象类
根据您提供的信息,可以生成一个名为CommentReport的对象类,包含以下字段:
```java
public class CommentReport {
private String commentId;
private String commentUserId;
private String commentUserName;
private String commentContent;
private String commentPic;
private String commentSource;
private String commentType;
private Long mId;
private String reportReason;
private String reportUserId;
private String reportUserName;
private Date createTime;
private Date dealTime;
private int auditStatus;
private String isDelete;
// 构造函数、getter和setter方法等省略
}
```
请注意,该对象类中所有字段均为字符串类型,需要在使用时根据具体情况进行类型转换。其中,createTime和dealTime字段使用了Java中的Date类型,需要在构造函数或setter方法中进行赋值。auditStatus字段使用了int类型,表示审核状态,0表示待审核,1表示已审已处置,2表示已审不处置。isDelete字段使用了String类型,表示是否查询被移除内容,0表示查询被移除内容,1表示不查询被移除内容,默认为1。
{ "commentId": null, "commentUserId": null, "commentUserName": null, "commentContent": null, "commentPic": null, "commentSource": null, "commentType": null, "mId": null, "pId": null } 转成JSONString
以下是该JSON转成JSON字符串的示例代码(以Java为例):
```java
import com.alibaba.fastjson.JSONObject;
public class Main {
public static void main(String[] args) {
JSONObject jsonObject = new JSONObject();
jsonObject.put("commentId", null);
jsonObject.put("commentUserId", null);
jsonObject.put("commentUserName", null);
jsonObject.put("commentContent", null);
jsonObject.put("commentPic", null);
jsonObject.put("commentSource", null);
jsonObject.put("commentType", null);
jsonObject.put("mId", null);
jsonObject.put("pId", null);
String jsonString = jsonObject.toString();
System.out.println(jsonString);
}
}
```
输出结果为:
```
{"commentId":null,"commentUserId":null,"commentUserName":null,"commentContent":null,"commentPic":null,"commentSource":null,"commentType":null,"mId":null,"pId":null}
```
阅读全文