无关风月
2024-12-31 18dc42cb6b4b4dbfa66a8b893aba097743fd8c26
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.stylefeng.guns.modular.system.dto;
 
import lombok.Data;
 
import java.util.Date;
 
@Data
public class FeedBackVo {
    private Integer id;
    private Date insertTime;
    private String nickname;
    private String phone;
    private String content;
}