package com.panzhihua.service_community.model.dos;
|
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
import lombok.Data;
|
|
/**
|
* @description: 实有单位
|
* @author: Null
|
* @date: 2021/3/19 11:32
|
*/
|
@Data
|
@TableName(value = "com_mng_real_company")
|
public class ComMngRealCompanyDO {
|
|
/** 主键 */
|
@TableId(type = IdType.ASSIGN_ID)
|
@JsonSerialize(using = ToStringSerializer.class)
|
private Long id;
|
|
/** 社区ID */
|
private Long communityId;
|
|
/** 单位名称 */
|
private String comName;
|
|
/** 法人 */
|
private String legalPerson;
|
|
/** 负责人 */
|
private String leader;
|
|
/** 联系方式 */
|
private String contactsPhone;
|
|
/** 人员规模 */
|
private Integer scope;
|
|
/** 统一社会信用代码 */
|
private String creditCode;
|
|
/** 省份行政区划代码 */
|
private Integer provinceAdcode;
|
|
/** 城市行政区划代码 */
|
private Integer cityAdcode;
|
|
/** 区县行政区划代码 */
|
private Integer districtAdcode;
|
|
/** 详细地址 */
|
private String address;
|
|
/** 创建时间 */
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
|
/** 创建人 */
|
private Long createBy;
|
}
|