2025-02-11 15:27:15 +08:00
|
|
|
package com.ff.common.domain;
|
|
|
|
|
|
|
|
|
|
import com.ff.base.annotation.Excel;
|
|
|
|
|
import com.ff.base.core.domain.BaseEntity;
|
2025-02-14 17:31:52 +08:00
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Builder;
|
2025-02-11 15:27:15 +08:00
|
|
|
import lombok.Data;
|
2025-02-14 17:31:52 +08:00
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
2025-02-11 15:27:15 +08:00
|
|
|
/**
|
|
|
|
|
* 用户租户密钥对象 ff_tenant_secret_key
|
|
|
|
|
*
|
|
|
|
|
* @author shi
|
2025-02-14 17:31:52 +08:00
|
|
|
* @date 2025-02-14
|
2025-02-11 15:27:15 +08:00
|
|
|
*/
|
|
|
|
|
@Data
|
2025-02-14 17:31:52 +08:00
|
|
|
@AllArgsConstructor
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@Builder
|
2025-02-11 15:27:15 +08:00
|
|
|
public class TenantSecretKey extends BaseEntity
|
|
|
|
|
{
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
/** 主键id */
|
|
|
|
|
private Long id;
|
|
|
|
|
|
2025-02-20 15:33:11 +08:00
|
|
|
/**
|
|
|
|
|
* 代理类型 false 不是
|
|
|
|
|
*/
|
|
|
|
|
private Boolean agentType;
|
|
|
|
|
|
2025-02-20 14:46:09 +08:00
|
|
|
/**
|
|
|
|
|
* 代理id
|
|
|
|
|
*/
|
|
|
|
|
private Long agentId;
|
|
|
|
|
|
2025-02-11 15:27:15 +08:00
|
|
|
/** 租户key */
|
|
|
|
|
@Excel(name = "租户key")
|
|
|
|
|
private String tenantKey;
|
|
|
|
|
|
|
|
|
|
/** 商户后缀 */
|
|
|
|
|
@Excel(name = "商户后缀")
|
|
|
|
|
private String tenantSn;
|
|
|
|
|
|
|
|
|
|
/** 租户密钥 */
|
|
|
|
|
@Excel(name = "租户密钥")
|
|
|
|
|
private String tenantSecret;
|
|
|
|
|
|
2025-02-14 17:31:52 +08:00
|
|
|
/** 租户状态 1正常 0停用 */
|
|
|
|
|
private Boolean tenantStatus;
|
|
|
|
|
|
|
|
|
|
/** 租户类型 TenantType 枚举 */
|
|
|
|
|
@Excel(name = "租户类型 TenantType 枚举")
|
|
|
|
|
private Integer tenantType;
|
2025-02-11 15:27:15 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|