更新配置

This commit is contained in:
wh_zcy 2023-01-06 16:31:17 +08:00
parent 874dcbdf9c
commit cf7018afd9
2 changed files with 0 additions and 10 deletions

View File

@ -2,7 +2,6 @@
{
"type_id": 5011001,
"id_list": 1,
"weight": 1000,
"jump_interface": 115,
"task_display": {
"key": "guild_task5011001",
@ -37,7 +36,6 @@
{
"type_id": 5012001,
"id_list": 2,
"weight": 1000,
"jump_interface": 113,
"task_display": {
"key": "guild_task5012001",
@ -72,7 +70,6 @@
{
"type_id": 5018001,
"id_list": 3,
"weight": 1000,
"jump_interface": 107,
"task_display": {
"key": "guild_task5018001",
@ -107,7 +104,6 @@
{
"type_id": 5024001,
"id_list": 4,
"weight": 1000,
"jump_interface": 103,
"task_display": {
"key": "guild_task5024001",
@ -142,7 +138,6 @@
{
"type_id": 5047001,
"id_list": 5,
"weight": 1000,
"jump_interface": 103,
"task_display": {
"key": "guild_task5047001",
@ -177,7 +172,6 @@
{
"type_id": 5063001,
"id_list": 6,
"weight": 1000,
"jump_interface": 109,
"task_display": {
"key": "guild_task5063001",
@ -212,7 +206,6 @@
{
"type_id": 5068001,
"id_list": 7,
"weight": 1000,
"jump_interface": 122,
"task_display": {
"key": "guild_task5068001",
@ -247,7 +240,6 @@
{
"type_id": 5104001,
"id_list": 8,
"weight": 1000,
"jump_interface": 123,
"task_display": {
"key": "guild_task5104001",

View File

@ -13,7 +13,6 @@ import "errors"
type GameGuildTaskData struct {
TypeId int32
IdList int32
Weight int32
JumpInterface int32
TaskDisplay string
Reward []*Gameatn
@ -30,7 +29,6 @@ func (*GameGuildTaskData) GetTypeId() int32 {
func (_v *GameGuildTaskData)Deserialize(_buf map[string]interface{}) (err error) {
{ var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["type_id"].(float64); !_ok_ { err = errors.New("type_id error"); return }; _v.TypeId = int32(_tempNum_) }
{ var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["id_list"].(float64); !_ok_ { err = errors.New("id_list error"); return }; _v.IdList = int32(_tempNum_) }
{ var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["weight"].(float64); !_ok_ { err = errors.New("weight error"); return }; _v.Weight = int32(_tempNum_) }
{ var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["jump_interface"].(float64); !_ok_ { err = errors.New("jump_interface error"); return }; _v.JumpInterface = int32(_tempNum_) }
{var _ok_ bool; var __json_text__ map[string]interface{}; if __json_text__, _ok_ = _buf["task_display"].(map[string]interface{}) ; !_ok_ { err = errors.New("_v.TaskDisplay error"); return }; { var _ok_ bool; if _, _ok_ = __json_text__["key"].(string); !_ok_ { err = errors.New("key error"); return } }; { var _ok_ bool; if _v.TaskDisplay, _ok_ = __json_text__["text"].(string); !_ok_ { err = errors.New("text error"); return } } }
{