46 lines
853 B
Java
46 lines
853 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;
|
||
|
|
||
|
import javax.validation.constraints.NotNull;
|
||
|
|
||
|
/**
|
||
|
* 租户游戏配额对象 ff_tenant_game_quota
|
||
|
*
|
||
|
* @author shi
|
||
|
* @date 2025-02-12
|
||
|
*/
|
||
|
@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;
|
||
|
|
||
|
|
||
|
|
||
|
/** 版本号 */
|
||
|
@Excel(name = "版本号")
|
||
|
private Integer version;
|
||
|
|
||
|
|
||
|
}
|