| | |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | @ApiModel |
| | | public class Medium { |
| | | @TableField("profile_photo") |
| | | @ApiModelProperty(value = "头像", required = true) |
| | |
| | | private Integer cityId; |
| | | @ApiModelProperty(value = "区id", required = true) |
| | | private Integer districtId; |
| | | @ApiModelProperty(value = "是否审核通过(1=待审核,2=审核通过,3=审核拒绝)", required = false) |
| | | private Integer auditStatus; |
| | | |
| | | private String auditNote; |
| | | |
| | | private Date refuseDate; |
| | | } |