44 lines
1.0 KiB
Java
44 lines
1.0 KiB
Java
|
|
package com.ff.game.domain;
|
||
|
|
|
||
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||
|
|
import com.ff.base.annotation.Excel;
|
||
|
|
import com.ff.base.core.domain.BaseEntity;
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
import lombok.experimental.SuperBuilder;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 游戏平台语言管理对象 ff_game_secret_key_lang
|
||
|
|
*
|
||
|
|
* @author shi
|
||
|
|
* @date 2025-03-13
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
@AllArgsConstructor
|
||
|
|
@NoArgsConstructor
|
||
|
|
@SuperBuilder
|
||
|
|
public class GameSecretKeyLang extends BaseEntity
|
||
|
|
{
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
/** $column.columnComment */
|
||
|
|
private Long id;
|
||
|
|
|
||
|
|
/** 平台 */
|
||
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
||
|
|
@Excel(name = "平台", width = 30, dateFormat = "yyyy-MM-dd")
|
||
|
|
private Long gameSecretKeyId;
|
||
|
|
|
||
|
|
/** 语言 */
|
||
|
|
@Excel(name = "语言")
|
||
|
|
private String lang;
|
||
|
|
|
||
|
|
/** 系统语种id */
|
||
|
|
@Excel(name = "系统语种id")
|
||
|
|
private String systemLangCode;
|
||
|
|
|
||
|
|
|
||
|
|
}
|