| | |
| | | package com.stylefeng.guns.modular.system.dto; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.baomidou.mybatisplus.annotations.TableLogic; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty(value = "1=待审核,2=已通过,3=已拒绝", required = false) |
| | | private Integer authStatus; |
| | | @ApiModelProperty(value = "举报信息", required = false) |
| | | private Integer content; |
| | | private String content; |
| | | @ApiModelProperty(value = "举报模块:审核状态0待审核 1通过 2未通过", required = false) |
| | | private Integer audit; |
| | | @ApiModelProperty(value = "拒绝理由", required = false) |
| | | private String backReason; |
| | | @ApiModelProperty(value = "拒绝日期", required = false) |
| | | private Date backDate; |
| | | @TableField(exist = false) |
| | | private Integer houseId; |
| | | } |