| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | |
| | | @TableField("community_id") |
| | | @ApiModelProperty("社区id") |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING) |
| | | private Long communityId; |
| | | |
| | | @TableField("districts_code") |
| | |
| | | private String remark; |
| | | |
| | | |
| | | @TableField("dept_id") |
| | | @ApiModelProperty("单位ID") |
| | | private String deptId; |
| | | private Date createTime; |
| | | |
| | | @TableField("oper_name") |
| | |
| | | |
| | | @TableField("update_time") |
| | | private Date updateTime; |
| | | private String reason; |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | private Integer userCount; |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | private List<Department> child; |
| | | |
| | | |
| | | |
| | | |
| | | } |