26 lines
341 B
Java
26 lines
341 B
Java
package cn.wujiangbo.dto;
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
public class AppSuggestionVO {
|
|
|
|
private Long id;
|
|
|
|
private LocalDateTime createTime;
|
|
|
|
private Long userId;
|
|
|
|
private String suggestionCountent;
|
|
|
|
|
|
private String complaint;
|
|
|
|
private String demands;
|
|
|
|
private String status;
|
|
|
|
private String realName;
|
|
}
|
|
|