46 lines
943 B
Java
46 lines
943 B
Java
package com.ff.common.domain;
|
|
|
|
import java.math.BigDecimal;
|
|
import com.ff.base.annotation.Excel;
|
|
import com.ff.base.core.domain.BaseEntity;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* 租户游戏配额对象 ff_tenant_game_quota
|
|
*
|
|
* @author shi
|
|
* @date 2025-02-14
|
|
*/
|
|
@Data
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
@Builder
|
|
public class TenantGameQuota extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 主键id */
|
|
private Long id;
|
|
|
|
/** 租户key */
|
|
@Excel(name = "租户key")
|
|
private String tenantKey;
|
|
|
|
/** 游戏额度 */
|
|
@Excel(name = "游戏额度")
|
|
private BigDecimal balance;
|
|
|
|
/** 额度类型 TenantQuotaType 枚举 */
|
|
@Excel(name = "额度类型 TenantQuotaType 枚举")
|
|
private Integer quotaType;
|
|
|
|
/** 版本号 */
|
|
@Excel(name = "版本号")
|
|
private Integer version;
|
|
|
|
|
|
}
|