|
@@ -1,12 +1,15 @@
|
|
|
package com.fs.course.domain;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.fs.common.annotation.Excel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
import com.fs.common.core.domain.BaseEntity;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
/**
|
|
|
* 看课投诉记录对象 fs_user_course_complaint_record
|
|
|
*
|
|
@@ -25,9 +28,21 @@ public class FsUserCourseComplaintRecord extends BaseEntity{
|
|
|
@TableField(exist = false)
|
|
|
private Integer pageSize = 10;
|
|
|
|
|
|
- @ApiModelProperty(value = "用户昵称")
|
|
|
+ // @ApiModelProperty(value = "用户昵称")
|
|
|
+// @TableField(exist = false)
|
|
|
+// private String nickName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "投诉类型")
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String complaintTypeName;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date startCreateTime;
|
|
|
+
|
|
|
@TableField(exist = false)
|
|
|
- private String nickName;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date endCreateTime;
|
|
|
|
|
|
/** 投诉记录id */
|
|
|
private Long recordId;
|