| | |
| | | package com.panzhihua.common.model.vos.community; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | * ID |
| | | */ |
| | | @ApiModelProperty(value = "ID") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | * 成立时间 |
| | | */ |
| | | @ApiModelProperty(value = "成立时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date buildDate; |
| | | |
| | | /** |
| | |
| | | * 创建时间 |
| | | */ |
| | | @ApiModelProperty(value = "创建时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date createAt; |
| | | |
| | | /** |
| | |
| | | * 更新时间 |
| | | */ |
| | | @ApiModelProperty(value = "更新时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date updateAt; |
| | | |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long communityId; |
| | | |
| | | /** |
| | | * 登录用户id |
| | | */ |
| | | @ApiModelProperty(value = "登录用户id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long userId; |
| | | |
| | | @ApiModelProperty("账号") |
| | |
| | | private String password; |
| | | |
| | | @ApiModelProperty("权限id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long roleId; |
| | | |
| | | @ApiModelProperty("状态") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("成立方式 1社区孵化 2民政注册") |
| | | private Integer buildType; |
| | | |
| | | @ApiModelProperty("经度") |
| | | private String longitude; |
| | | |
| | | @ApiModelProperty("纬度") |
| | | private String latitude; |
| | | |
| | | @ApiModelProperty("服务类型") |
| | | private String serviceType; |
| | | |
| | | @ApiModelProperty("街道id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long streetId; |
| | | |
| | | @ApiModelProperty("服务类型名称") |
| | | private String serviceName; |
| | | |
| | | @ApiModelProperty("所属机构名称") |
| | | private String streetName; |
| | | |
| | | @ApiModelProperty("是否三社 0否1是") |
| | | private Integer isSociety; |
| | | |
| | | /** |
| | | * 描述 |
| | | */ |
| | | @ApiModelProperty("描述") |
| | | private String description; |
| | | |
| | | @ApiModelProperty("社区名字") |
| | | private String communityName; |
| | | |
| | | @ApiModelProperty("孵化单位") |
| | | private Long hatchUnit; |
| | | |
| | | @ApiModelProperty("孵化单位类型(1.街道 2.社区)") |
| | | private Integer hatchUnitType; |
| | | |
| | | @ApiModelProperty("孵化单位名称") |
| | | private String hatchUnitName; |
| | | |
| | | @ApiModelProperty("挂靠单位") |
| | | private Long affiliatedUnit; |
| | | |
| | | @ApiModelProperty("挂靠单位类型(1.街道 2.社区)") |
| | | private Integer affiliatedUnitType; |
| | | |
| | | @ApiModelProperty("挂靠单位名称") |
| | | private String affiliatedUnitName; |
| | | |
| | | @ApiModelProperty("承办项目数") |
| | | private Integer undertakeProjectNum; |
| | | |
| | | @ApiModelProperty("开展活动数") |
| | | private Integer startActNum; |
| | | |
| | | @ApiModelProperty("孵化进度(1.已进驻 2.孵化中 3.通过评估 4.出壳)") |
| | | private Integer hatchSchedule; |
| | | } |