38 lines
797 B
Java
38 lines
797 B
Java
|
|
package com.ff.common.domain;
|
|||
|
|
|
|||
|
|
import com.ff.base.annotation.Excel;
|
|||
|
|
import com.ff.base.core.domain.BaseEntity;
|
|||
|
|
import lombok.Data;
|
|||
|
|
/**
|
|||
|
|
* 用户租户密钥对象 ff_tenant_secret_key
|
|||
|
|
*
|
|||
|
|
* @author shi
|
|||
|
|
* @date 2025-02-11
|
|||
|
|
*/
|
|||
|
|
@Data
|
|||
|
|
public class TenantSecretKey extends BaseEntity
|
|||
|
|
{
|
|||
|
|
private static final long serialVersionUID = 1L;
|
|||
|
|
|
|||
|
|
/** 主键id */
|
|||
|
|
private Long id;
|
|||
|
|
|
|||
|
|
/** 租户key */
|
|||
|
|
@Excel(name = "租户key")
|
|||
|
|
private String tenantKey;
|
|||
|
|
|
|||
|
|
/** 商户后缀 */
|
|||
|
|
@Excel(name = "商户后缀")
|
|||
|
|
private String tenantSn;
|
|||
|
|
|
|||
|
|
/** 租户密钥 */
|
|||
|
|
@Excel(name = "租户密钥")
|
|||
|
|
private String tenantSecret;
|
|||
|
|
|
|||
|
|
/** 租户状态(0正常 1停用) */
|
|||
|
|
@Excel(name = "租户状态", readConverterExp = "0=正常,1=停用")
|
|||
|
|
private String tenantStatus;
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|