package org.springblade.modules.registerUnit.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 lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 企业注册实体类
|
* @author zhongrj
|
* @time 2022-01-11
|
*/
|
@Data
|
@TableName("sys_register_unit")
|
public class RegisterUnit implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 企业注册主键id
|
*/
|
@TableId(value = "id",type = IdType.AUTO)
|
private Integer id;
|
|
|
/**
|
* 企业名称
|
*/
|
private String deptName;
|
|
/**
|
* 辖区id
|
*/
|
private String jurisdiction;
|
|
/**
|
* 企业属性
|
*/
|
private String stats;
|
|
/**
|
* 联系人
|
*/
|
private String linkman;
|
|
/**
|
* 联系电话
|
*/
|
private String phone;
|
|
/**
|
* 企业注册地址
|
*/
|
private String address;
|
|
/**
|
* 登记机关
|
*/
|
private String unit;
|
|
/**
|
* 注册时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date createTime;
|
|
/**
|
* 审核状态
|
*/
|
private String auditStatus;
|
|
|
/**
|
* 审核时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date auditTime;
|
|
/**
|
* 审核人员id
|
*/
|
private String auditUser;
|
|
/**
|
* 公司id
|
*/
|
private String deptId;
|
|
/**
|
* 营业执照 url
|
*/
|
private String businessLicense;
|
|
/**
|
* 审核明细
|
*/
|
private String auditDetail;
|
|
}
|