12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /**
- * /**
- * Copyright (c) 2018 业主系统 All rights reserved.
- * <p>
- * https://www.kioor.com
- * <p>
- * 版权所有,侵权必究!
- */
- package com.kioor.messageboard.dto;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import java.util.Date;
- /**
- * 留言
- *
- * @author Mark sunlightcs@gmail.com
- */
- @Data
- @Schema(description = "留言")
- public class MessageDTO {
- @Schema(description = "id")
- private Long id;
- @Schema(description = "小区")
- private Long housingEstateId;
- @Schema(description = "论坛")
- private Long messageBoardId;
- @Schema(description = "留言内容")
- private String content;
- @Schema(description = "留言人")
- private Long editUser;
- @Schema(description = "留言时间")
- private Date editTime;
- @Schema(description = "是否显示房号")
- private Integer showRoomFlag;
- @Schema(description = "留言人房号")
- private String roomName;
- }
|