package com.oying.modules.message.domain.dto; import lombok.Data; import java.time.LocalDateTime; @Data public class MesShopMsgRespDTO { private Long msgId; private String title; private String content; private LocalDateTime createTime; private Long bizId; private String bizType; private Boolean read; }