//------------------------------------------------------------------------------ public virtual void SetGameKeyMetaByUuid() { ResponseGameKeyMetaBool wrapper = new ResponseGameKeyMetaBool(); wrapper.message = "Success"; wrapper.code = 0; wrapper.action = "game-key-meta/set/by-uuid"; GameKeyMeta obj = new GameKeyMeta(); string _status = util.GetParamValue(_context, "status"); if(!String.IsNullOrEmpty(_status)) obj.status = (string)_status; string _sort = util.GetParamValue(_context, "sort"); if(!String.IsNullOrEmpty(_sort)) obj.sort = Convert.ToInt32(_sort); string _code = util.GetParamValue(_context, "code"); if(!String.IsNullOrEmpty(_code)) obj.code = (string)_code; string _display_name = util.GetParamValue(_context, "display_name"); if(!String.IsNullOrEmpty(_display_name)) obj.display_name = (string)_display_name; string _name = util.GetParamValue(_context, "name"); if(!String.IsNullOrEmpty(_name)) obj.name = (string)_name; string _date_modified = util.GetParamValue(_context, "date_modified"); if(!String.IsNullOrEmpty(_date_modified)) obj.date_modified = Convert.ToDateTime(_date_modified); else obj.date_modified = DateTime.Now; string _data = util.GetParamValue(_context, "data"); if(!String.IsNullOrEmpty(_data)) obj.data = (string)_data; string _level = util.GetParamValue(_context, "level"); if(!String.IsNullOrEmpty(_level)) obj.level = (string)_level; string _uuid = util.GetParamValue(_context, "uuid"); if(!String.IsNullOrEmpty(_uuid)) obj.uuid = (string)_uuid; string _key_level = util.GetParamValue(_context, "key_level"); if(!String.IsNullOrEmpty(_key_level)) obj.key_level = (string)_key_level; string _store_count = util.GetParamValue(_context, "store_count"); if(!String.IsNullOrEmpty(_store_count)) obj.store_count = Convert.ToInt32(_store_count); string _key = util.GetParamValue(_context, "key"); if(!String.IsNullOrEmpty(_key)) obj.key = (string)_key; string _game_id = util.GetParamValue(_context, "game_id"); if(!String.IsNullOrEmpty(_game_id)) obj.game_id = (string)_game_id; string _active = util.GetParamValue(_context, "active"); if(!String.IsNullOrEmpty(_active)) obj.active = Convert.ToBoolean(_active); string _date_created = util.GetParamValue(_context, "date_created"); if(!String.IsNullOrEmpty(_date_created)) obj.date_created = Convert.ToDateTime(_date_created); else obj.date_created = DateTime.Now; string _type = util.GetParamValue(_context, "type"); if(!String.IsNullOrEmpty(_type)) obj.type = (string)_type; string _order = util.GetParamValue(_context, "order"); if(!String.IsNullOrEmpty(_order)) obj.order = (string)_order; string _key_stat = util.GetParamValue(_context, "key_stat"); if(!String.IsNullOrEmpty(_key_stat)) obj.key_stat = (string)_key_stat; string _description = util.GetParamValue(_context, "description"); if(!String.IsNullOrEmpty(_description)) obj.description = (string)_description; // get data wrapper.data = api.SetGameKeyMetaByUuid(obj); util.SerializeTypeJSONToResponse(_context, wrapper); }
//------------------------------------------------------------------------------ public virtual void DelGameKeyMetaByUuid() { string _uuid = (string)util.GetParamValue(_context, "uuid"); ResponseGameKeyMetaBool wrapper = new ResponseGameKeyMetaBool(); wrapper.message = "Success"; wrapper.code = 0; wrapper.action = "game-key-meta/del/by-uuid"; bool completed = api.DelGameKeyMetaByUuid( _uuid ); // get data wrapper.data = completed; util.SerializeTypeToResponse(_format, _context, wrapper); }