You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
368 B
Java
19 lines
368 B
Java
|
5 years ago
|
package com.jingcheng.cms.model;
|
||
|
6 years ago
|
|
||
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.EqualsAndHashCode;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@EqualsAndHashCode(callSuper = false)
|
||
|
|
@TableName("case_content_comments")
|
||
|
|
public class CaseContentComments extends BaseEntity {
|
||
|
|
|
||
|
|
private Long contentId;
|
||
|
|
|
||
|
|
private String comments;
|
||
|
|
|
||
|
6 years ago
|
private String userName;
|
||
|
|
|
||
|
6 years ago
|
}
|