Files
wb-java-nc-shop/src/main/java/com/nlshop/entity/Message.java
2026-01-11 18:14:42 +08:00

22 lines
478 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.nlshop.entity;
import lombok.Data;
import java.time.LocalDateTime;
@Data
public class Message {
private Long id;
private Long userId;
private Long merchantId;
private Long orderId;
private String content;
private String reply;
private Integer status; // 0-未回复1-已回复
private LocalDateTime createTime;
private LocalDateTime replyTime;
// 关联查询字段
private User user;
private Order order;
}