All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.herodotus.engine.supplier.message.entity.DialogueDetail Maven / Gradle / Ivy

There is a newer version: 3.3.4.0
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2020-2030 郑庚伟 ZHENGGENGWEI (码匠君),  Licensed under the AGPL License
 *
 * This file is part of Herodotus Engine.
 *
 * Herodotus Engine is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published
 * by the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Herodotus Engine is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 */

package cn.herodotus.engine.supplier.message.entity;

import cn.herodotus.engine.message.core.constants.MessageConstants;
import cn.herodotus.engine.supplier.message.domain.BaseSenderEntity;
import com.google.common.base.MoreObjects;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.persistence.*;
import org.hibernate.annotations.CacheConcurrencyStrategy;
import org.hibernate.annotations.UuidGenerator;

/**
 * 

Description: 私信对话详情

* * @author : gengwei.zheng * @date : 2022/12/7 11:03 */ @Schema(name = "私信对话详情") @Entity @Table(name = "msg_dialogue_detail", indexes = { @Index(name = "msg_dialogue_detail_id_idx", columnList = "detail_id"), @Index(name = "msg_dialogue_detail_sid_idx", columnList = "sender_id"), @Index(name = "msg_dialogue_detail_rid_idx", columnList = "receiver_id"), @Index(name = "msg_dialogue_detail_did_idx", columnList = "dialogue_id") }) @Cacheable @org.hibernate.annotations.Cache(usage = CacheConcurrencyStrategy.READ_WRITE, region = MessageConstants.REGION_MESSAGE_DIALOGUE_DETAIL) public class DialogueDetail extends BaseSenderEntity { @Schema(name = "对话详情ID") @Id @UuidGenerator @Column(name = "detail_id", length = 64) private String detailId; @Schema(name = "接收人ID") @Column(name = "receiver_id", length = 64) private String receiverId; @Schema(name = "接收人名称", title = "冗余信息,增加该字段减少重复查询") @Column(name = "receiver_name", length = 50) private String receiverName; @Schema(name = "发送人头像") @Column(name = "receiver_avatar", length = 1000) private String receiverAvatar; @Schema(name = "公告内容") @Column(name = "content", columnDefinition = "TEXT") private String content; @Schema(name = "对话ID") @Column(name = "dialogue_id", length = 64) private String dialogueId; public String getDetailId() { return detailId; } public void setDetailId(String detailId) { this.detailId = detailId; } public String getReceiverId() { return receiverId; } public void setReceiverId(String receiverId) { this.receiverId = receiverId; } public String getReceiverName() { return receiverName; } public void setReceiverName(String receiverName) { this.receiverName = receiverName; } public String getReceiverAvatar() { return receiverAvatar; } public void setReceiverAvatar(String receiverAvatar) { this.receiverAvatar = receiverAvatar; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getDialogueId() { return dialogueId; } public void setDialogueId(String dialogueId) { this.dialogueId = dialogueId; } @Override public String toString() { return MoreObjects.toStringHelper(this) .add("detailId", detailId) .add("receiverId", receiverId) .add("receiverName", receiverName) .add("receiverAvatar", receiverAvatar) .add("content", content) .add("dialogueId", dialogueId) .toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy