leomonM
2025-08-22 9974ae6ee68dd3ddbc5d6b2f8e66606e6bf2b25a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}