/*
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
*
|
* Redistribution and use in source and binary forms, with or without
|
* modification, are permitted provided that the following conditions are met:
|
*
|
* Redistributions of source code must retain the above copyright notice,
|
* this list of conditions and the following disclaimer.
|
* Redistributions in binary form must reproduce the above copyright
|
* notice, this list of conditions and the following disclaimer in the
|
* documentation and/or other materials provided with the distribution.
|
* Neither the name of the dreamlu.net developer nor the names of its
|
* contributors may be used to endorse or promote products derived from
|
* this software without specific prior written permission.
|
* Author: Chill 庄骞 (smallchill@163.com)
|
*/
|
package org.springblade.modules.information.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 实体类
|
*
|
* @author BladeX
|
* @since 2021-07-07
|
*/
|
@Data
|
@TableName("sys_information")
|
@ApiModel(value = "Information对象", description = "Information对象")
|
public class Information implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 统一社会信用代码
|
*/
|
@ApiModelProperty(value = "统一社会信用代码")
|
@TableField("creditCode")
|
private String creditcode;
|
/**
|
* 企业名称
|
*/
|
@ApiModelProperty(value = "企业名称")
|
@TableField("enterpriseName")
|
private String enterprisename;
|
/**
|
* 法定代表人
|
*/
|
@ApiModelProperty(value = "法定代表人")
|
private String representative;
|
/**
|
* 成立日期
|
*/
|
@ApiModelProperty(value = "成立日期")
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@TableField("establishTime")
|
private Date establishtime;
|
/**
|
* 注册资本
|
*/
|
@ApiModelProperty(value = "注册资本")
|
@TableField("registeredCapital")
|
private String registeredcapital;
|
/**
|
* 实缴资本
|
*/
|
@ApiModelProperty(value = "实缴资本")
|
private String capital;
|
/**
|
* 组织机构代码
|
*/
|
@ApiModelProperty(value = "组织机构代码")
|
@TableField("organizationCode")
|
private String organizationcode;
|
/**
|
* 工商注册号
|
*/
|
@ApiModelProperty(value = "工商注册号")
|
@TableField("registrationNumber")
|
private String registrationnumber;
|
/**
|
* 纳税人识别号
|
*/
|
@ApiModelProperty(value = "纳税人识别号")
|
@TableField("identificationNumber")
|
private String identificationnumber;
|
/**
|
* 企业类型
|
*/
|
@ApiModelProperty(value = "企业类型")
|
private String enterprises;
|
/**
|
* 注册地址
|
*/
|
@ApiModelProperty(value = "注册地址")
|
private String address;
|
/**
|
* 经营范围
|
*/
|
@ApiModelProperty(value = "经营范围")
|
private String business;
|
/**
|
* 所属地区
|
*/
|
@ApiModelProperty(value = "所属地区")
|
private String region;
|
/**
|
* 登记机关
|
*/
|
@ApiModelProperty(value = "登记机关")
|
private String registration;
|
/**
|
* 所属行业
|
*/
|
@ApiModelProperty(value = "所属行业")
|
private String industry;
|
/**
|
* 租户ID
|
*/
|
@ApiModelProperty(value = "分局id")
|
private String departmentid;
|
|
private String stats;
|
private String jurisdiction;
|
private String representativecell;
|
private String contacts;
|
private String contactscell;
|
private String businessLicense;
|
private String licence;
|
private String fregion;
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private Date ftime;
|
|
|
}
|