|
|
|
@ -3,6 +3,7 @@ package jty.expressdistributionsystem.entity;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
|
import lombok.Data;
|
|
|
|
@ -13,7 +14,11 @@ import java.io.Serializable;
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
@TableName("message")
|
|
|
|
|
public class Message implements Serializable {
|
|
|
|
|
public Message() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Serial
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
@ -42,7 +47,4 @@ public class Message implements Serializable {
|
|
|
|
|
|
|
|
|
|
@TableField("mark")
|
|
|
|
|
private Integer mark;
|
|
|
|
|
|
|
|
|
|
public Message() {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|