Files
wb-java-nc-shop/src/main/java/com/nlshop/entity/Message.java

22 lines
478 B
Java
Raw Normal View History

2026-01-11 18:14:42 +08:00
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;
}