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