package com.ruoyi.system.api.model;
|
|
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 lombok.Data;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/3/4 18:26
|
*/
|
@Data
|
@TableName("t_enterprise")
|
public class Enterprise {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 企业名称
|
*/
|
@TableField("name")
|
private String name;
|
/**
|
* 企业唯一码
|
*/
|
@TableField("code")
|
private String code;
|
/**
|
* 登录账号
|
*/
|
@TableField("username")
|
private String username;
|
/**
|
* 登录密码
|
*/
|
@TableField("password")
|
private String password;
|
/**
|
* IP白名单
|
*/
|
@TableField("ip_whitelist")
|
private String ipWhitelist;
|
/**
|
* 统一社会信用代码
|
*/
|
@TableField("credit_identifier")
|
private String creditIdentifier;
|
/**
|
* 紧急联系电话
|
*/
|
@TableField("emergency_number")
|
private String emergencyNumber;
|
/**
|
* 经营范围
|
*/
|
@TableField("business_scope")
|
private String businessScope;
|
/**
|
* 运营类型
|
*/
|
@TableField("operation_type")
|
private String operationType;
|
/**
|
* 通讯地址
|
*/
|
@TableField("mailing_address")
|
private String mailingAddress;
|
/**
|
* 注册资本
|
*/
|
@TableField("registered_capital")
|
private String registeredCapital;
|
/**
|
* 法人代表
|
*/
|
@TableField("legal_representative")
|
private String legalRepresentative;
|
/**
|
* 联系人
|
*/
|
@TableField("contact_person")
|
private String contactPerson;
|
/**
|
* 联系电话
|
*/
|
@TableField("contact_number")
|
private String contactNumber;
|
/**
|
* 状态(1=有效,2=无效)
|
*/
|
@TableField("status")
|
private Integer status;
|
}
|