zhongrj
2023-11-11 072106a6169739156311ed71ca33890f27c35b85
src/main/java/org/springblade/modules/article/entity/ArticleCommentEntity.java
File was renamed from src/main/java/org/springblade/modules/notice/entity/NoticeCommentEntity.java
@@ -4,17 +4,17 @@
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  Redistributions of source code must retain the above copyright article,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  article, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill 庄骞 (smallchill@163.com)
 */
package org.springblade.modules.notice.entity;
package org.springblade.modules.article.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
@@ -23,15 +23,13 @@
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.util.Date;
import lombok.EqualsAndHashCode;
import org.springblade.core.tenant.mp.TenantEntity;
import org.springframework.format.annotation.DateTimeFormat;
/**
 * 通知评论表 实体类
@@ -40,9 +38,9 @@
 * @since 2023-11-08
 */
@Data
@TableName("jczz_notice_comment")
@TableName("jczz_article_comment")
@ApiModel(value = "NoticeComment对象", description = "通知评论表")
public class NoticeCommentEntity implements Serializable {
public class ArticleCommentEntity implements Serializable {
   private static final long serialVersionUID = 1L;
@@ -58,7 +56,7 @@
    */
   @ApiModelProperty(value = "公告id")
   @JsonSerialize(using = ToStringSerializer.class)
   private Long noticeId;
   private Long articleId;
   /**
    * 评论内容
    */