| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | import org.springblade.modules.grid.handle.GeometryTypeHandler; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | @ApiModelProperty("主键id") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | @TableId(value = "id", type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | /** |
| | | * 警务网格编号 |
| | | */ |
| | | @ApiModelProperty(value = "警务网格编号") |
| | | private String jwGridCode; |
| | | /** |
| | | * 派出所编号 |
| | | */ |
| | | @ApiModelProperty(value = "派出所编号") |
| | | private String pcsCode; |
| | | /** |
| | | * 派出所名称 |
| | | */ |
| | | @ApiModelProperty(value = "派出所名称") |
| | | private String pcsName; |
| | | |
| | | /** |
| | | * objectId |
| | | */ |
| | | @ApiModelProperty(value = "objectId") |
| | | private Integer objectId; |
| | | /** |
| | | * 警务室代码 |
| | | */ |
| | | @ApiModelProperty(value = "警务室代码") |
| | | private String jwsCode; |
| | | /** |
| | | * 民警用户id |
| | | */ |
| | | @ApiModelProperty(value = "民警用户id") |
| | | private Long userId; |
| | | /** |
| | | * 民警姓名 |
| | | */ |
| | | @ApiModelProperty(value = "民警姓名") |
| | | private String policeman; |
| | | /** |
| | | * 民警联系方式 |
| | | */ |
| | | @ApiModelProperty(value = "民警联系方式") |
| | | private String policemanPhone; |
| | | /** |
| | | * 社区编号 |
| | | */ |
| | |
| | | @ApiModelProperty(value = "社区名称") |
| | | private String communityName; |
| | | /** |
| | | * 派出所编号 |
| | | * 民警用户id |
| | | */ |
| | | @ApiModelProperty(value = "派出所编号") |
| | | private String policeStationCode; |
| | | /** |
| | | * 派出所名称 |
| | | */ |
| | | @ApiModelProperty(value = "派出所名称") |
| | | private String policeStationName; |
| | | @ApiModelProperty(value = "民警用户id") |
| | | private String policeUserId; |
| | | |
| | | /* |
| | | * 辖区面数据 |
| | | * 警务网格面数据 |
| | | * @TableField(typeHandler = GeometryTypeHandler.class) 操作面的时候用,平时注释掉 |
| | | */ |
| | | @ApiModelProperty(value = "辖区面数据") |
| | | @ApiModelProperty(value = "警务网格面数据") |
| | | // @TableField(typeHandler = GeometryTypeHandler.class) |
| | | private String geom; |
| | | /** |
| | | * 排序 |
| | | */ |
| | | @ApiModelProperty(value = "排序") |
| | | private Integer sort; |
| | | |
| | | /** |
| | | * 创建人 |