You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
451 B
25 lines
451 B
|
3 years ago
|
package com.bx.imcommon.model;
|
||
|
3 years ago
|
|
||
|
3 years ago
|
import com.bx.imcommon.serializer.DateToLongSerializer;
|
||
|
3 years ago
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||
|
3 years ago
|
import lombok.Data;
|
||
|
|
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
@Data
|
||
|
3 years ago
|
public class GroupMessageInfo {
|
||
|
3 years ago
|
|
||
|
3 years ago
|
private Long id;
|
||
|
3 years ago
|
|
||
|
3 years ago
|
private Long groupId;
|
||
|
3 years ago
|
|
||
|
3 years ago
|
private Long sendId;
|
||
|
|
|
||
|
3 years ago
|
private String content;
|
||
|
|
|
||
|
|
private Integer type;
|
||
|
|
|
||
|
3 years ago
|
@JsonSerialize(using = DateToLongSerializer.class)
|
||
|
3 years ago
|
private Date sendTime;
|
||
|
|
}
|