New file |
| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.panzhihua.common.validated.AddGroup; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author: llming |
| | | * @description: 街道表 |
| | | **/ |
| | | @Data |
| | | @TableName(value = "com_street") |
| | | public class ComStreetDO implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | /** |
| | | * streetId |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long streetId; |
| | | /** |
| | | * 街道名字 |
| | | */ |
| | | private String name; |
| | | |
| | | /** |
| | | * 省份地址编码 |
| | | */ |
| | | private String provinceCode; |
| | | /** |
| | | * 市级地址编码 |
| | | */ |
| | | private String cityCode; |
| | | /** |
| | | * 区级地址编码 |
| | | */ |
| | | private String areaCode; |
| | | /** |
| | | * 街道地址 |
| | | */ |
| | | private String address; |
| | | /** |
| | | * 经度 |
| | | */ |
| | | private String lng; |
| | | /** |
| | | * 纬度 |
| | | */ |
| | | private String lat; |
| | | /** |
| | | * 超管账号 |
| | | */ |
| | | private String account; |
| | | /** |
| | | * 账号密码 |
| | | */ |
| | | private String password; |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Date createAt; |
| | | |
| | | |
| | | } |