/*
|
* 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.record.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import java.time.LocalDateTime;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
/**
|
* 实体类
|
*
|
* @author BladeX
|
* @since 2021-07-12
|
*/
|
@Data
|
@TableName("sys_record")
|
@ApiModel(value = "Record对象", description = "Record对象")
|
public class Record implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 统一社会信用代码
|
*/
|
@ApiModelProperty(value = "统一社会信用代码")
|
@TableField("creditCode")
|
private String creditcode;
|
/**
|
* 企业名称
|
*/
|
@ApiModelProperty(value = "企业名称")
|
@TableField("enterpriseName")
|
private String enterprisename;
|
/**
|
* 法定代表人
|
*/
|
@ApiModelProperty(value = "法定代表人")
|
private String representative;
|
/**
|
* 成立日期
|
*/
|
@ApiModelProperty(value = "成立日期")
|
@TableField("establishTime")
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private Date establishtime;
|
/**
|
* 注册资本
|
*/
|
@ApiModelProperty(value = "注册资本")
|
@TableField("registeredCapital")
|
private String registeredcapital;
|
/**
|
* 组织机构代码
|
*/
|
@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;
|
/**
|
* 状态 0:审核通过 1:审核不通过 2: 审核中
|
*/
|
@ApiModelProperty(value = "状态 0:审核通过 1:审核不通过 2: 审核中")
|
private String type;
|
/**
|
* 保安服务单位许可编号
|
*/
|
@ApiModelProperty(value = "保安服务单位许可编号")
|
private String perid;
|
/**
|
* 许可发证机关
|
*/
|
@ApiModelProperty(value = "许可发证机关")
|
private String offices;
|
/**
|
* 发证时间
|
*/
|
@ApiModelProperty(value = "发证时间")
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private Date officetime;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
|
}
|