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
package com.jingcheng.cms.model;
|
|
|
|
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;
|
|
|
|
private String userName;
|
|
|
|
}
|