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

3 years ago
package com.bx.imcommon.model;
3 years ago
3 years ago
import com.bx.imcommon.serializer.DateToLongSerializer;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
3 years ago
import lombok.Data;
import java.util.Date;
@Data
public class GroupMessageInfo {
3 years ago
private Long id;
3 years ago
private Long groupId;
3 years ago
private Long sendId;
3 years ago
private String content;
private Integer type;
@JsonSerialize(using = DateToLongSerializer.class)
3 years ago
private Date sendTime;
}