1 Star 0 Fork 0

jackytse/tabtoy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
golang_gen.go 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
黑色灵猫 提交于 2018-07-12 14:43 . 修复: v2升级到v3的问题
// Generated by github.com/davyxu/tabtoy
// DO NOT EDIT!!
// Version: 3.0.0
package example
type ActorType int32
const (
ActorType_Leader = 0 // 唐僧
ActorType_Monkey = 1 // 孙悟空
ActorType_Pig = 2 // 猪八戒
ActorType_Hammer = 3 // 沙僧
)
var (
ActorTypeMapperValueByName = map[string]int32{
"Leader": 0, // 唐僧
"Monkey": 1, // 孙悟空
"Pig": 2, // 猪八戒
"Hammer": 3, // 沙僧
}
ActorTypeMapperNameByValue = map[int32]string{
0: "Leader", // 唐僧
1: "Monkey", // 孙悟空
2: "Pig", // 猪八戒
3: "Hammer", // 沙僧
}
)
type SampleDefine struct {
ID int64 `tb_name:"唯一ID"`
Name string `tb_name:"名称"`
IconID int32 `tb_name:"图标ID"`
NumericalRate float32 `tb_name:"攻击率"`
ItemID int32 `tb_name:"物品id"`
BuffID []int32 `tb_name:"BuffID"`
Type ActorType `tb_name:"类型"`
SkillID []int32 `tb_name:"技能ID列表"`
}
// Combine struct
type Table struct {
SampleDefine []*SampleDefine // table: SampleDefine
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/jackytse/tabtoy.git
git@gitee.com:jackytse/tabtoy.git
jackytse
tabtoy
tabtoy
v0.0.4

搜索帮助