package com.ruoyi.other.api.domain;
|
|
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/1/22 15:05
|
*/
|
@Data
|
@TableName("t_operator")
|
public class Operator {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 运营商唯一码
|
*/
|
@TableField("operatorId")
|
private String operatorId;
|
/**
|
* 运营商名称
|
*/
|
@TableField("name")
|
private String name;
|
/**
|
* 运营商秘钥
|
*/
|
@TableField("operatorSecret")
|
private String operatorSecret;
|
/**
|
* 数据加密秘钥
|
*/
|
@TableField("dataSecret")
|
private String dataSecret;
|
/**
|
* 初始化向量
|
*/
|
@TableField("dataSecretIv")
|
private String dataSecretIv;
|
/**
|
* 签名秘钥
|
*/
|
@TableField("sigSecret")
|
private String sigSecret;
|
/**
|
* token
|
*/
|
@TableField(exist = false)
|
private String token;
|
/**
|
* 登录时间
|
*/
|
@TableField(exist = false)
|
private Long loginTime;
|
/**
|
* 过期时间
|
*/
|
@TableField(exist = false)
|
private Long expireTime;
|
}
|