Bläddra i källkod

成就配置信息

cyzhao 1 år sedan
förälder
incheckning
bfebd7f0cd

Filskillnaden har hållts tillbaka eftersom den är för stor
+ 426 - 0
DevOps/flscfg/sqlback/jzhj2023_cfg20231012151505.sql


+ 311 - 397
Gameserver/App/configs/GameConfig.php

@@ -1,45 +1,43 @@
 <?php
 ////////////////////
-// 由CodeGenerator创建。
-// Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
-// author: gwang
-// 日期: 2023-09-19 17:03:23
+ // 由CodeGenerator创建。
+ // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
+ // author: gwang 
+ // 日期: 2023-10-12 15:15:03
 ////////////////////
 
 namespace loyalsoft;
 
 /**
- * 常量配置数据
+ * 常量配置数据 
  */
 class GameConfig {
-// <editor-fold defaultstate="collapsed" desc="  基础代码 ">
-
+// <editor-fold defaultstate="collapsed" desc="  基础代码 ">    
     /**
-     * 是否启用codegen
+     * 是否启用codegen 
      */
-    private static function isCG() {
-        return defined('CodeGen_Enabled') && CodeGen_Enabled;
+    private static function isCG()  {
+        return defined('CodeGen_Enabled') && CodeGen_Enabled; 
     }
-
     /**
      * @var bool 分区是否使用独立的常量配置数据
      */
     private static $useZoneId = false;
-
     /**
      * 追加分区列表字符串
      * @return string
      */
-    private static function zoneid() {
+    private static function zoneid()
+    {
         global $zoneid;
         return self::$useZoneId ? "-zone$zoneid" : "";
     }
-
+	
     /**
      * @return ClientVersion
      */
     private static function CV() {
-        return (req() ? req()->CV : "999.999.999") . '-';
+        return req() ? req()->CV . '-' : "";
     }
 
     /**
@@ -81,553 +79,468 @@ class GameConfig {
                 return $data->$itemId;
             }
         } else {
-            var_dump(self::CV());
             $key = 'gamecfg-' . self::CV() . $modelName . self::zoneid();
-            var_dump($key);
             return gMem()->hget($key, $itemId);
         }
         return null;
     }
-
 // </editor-fold>
-
     /**
-     * 全局参数
-     * @return \globalsettings
-     */
-    public static function globalsettings() {
-        static $a = null;
+    * 全局参数
+    * @return \globalsettings
+    */
+    public static function globalsettings()
+    { 
+        static $a = null; 
         return self::initValue($a, 'globalsettings');
     }
-
     /**
-     * 停服计划
-     * @return \service_schedule
-     */
-    public static function service_schedule() {
-        static $a = null;
+    * 停服计划
+    * @return \service_schedule
+    */
+    public static function service_schedule()
+    { 
+        static $a = null; 
         return self::initValue($a, 'service_schedule');
     }
-
     /**
-     * @return \sm_service_schedule service_schedule item数据
-     */
-    public static function service_schedule_getItem($itemid) {
+    * @return \sm_service_schedule service_schedule item数据 
+    */
+    public static function service_schedule_getItem($itemid)
+    { 
         return self::get_hash_item('service_schedule', $itemid);
     }
-
     /**
-     * 道具表
-     * @return \item
-     */
-    public static function item() {
-        static $a = null;
+    * 道具表
+    * @return \item
+    */
+    public static function item()
+    { 
+        static $a = null; 
         return self::initValue($a, 'item');
     }
-
     /**
-     * @return \sm_item item item数据
-     */
-    public static function item_getItem($itemid) {
+    * @return \sm_item item item数据 
+    */
+    public static function item_getItem($itemid)
+    { 
         return self::get_hash_item('item', $itemid);
     }
-
     /**
-     * 系统邮件
-     * @return \sysmail
-     */
-    public static function sysmail() {
-        static $a = null;
+    * 系统邮件
+    * @return \sysmail
+    */
+    public static function sysmail()
+    { 
+        static $a = null; 
         return self::initValue($a, 'sysmail');
     }
-
     /**
-     * @return \sm_sysmail sysmail item数据
-     */
-    public static function sysmail_getItem($itemid) {
+    * @return \sm_sysmail sysmail item数据 
+    */
+    public static function sysmail_getItem($itemid)
+    { 
         return self::get_hash_item('sysmail', $itemid);
     }
-
     /**
-     * 客户端版本信息
-     * @return \clientVersionHistory
-     */
-    public static function clientVersionHistory() {
-        static $a = null;
+    * 客户端版本信息
+    * @return \clientVersionHistory
+    */
+    public static function clientVersionHistory()
+    { 
+        static $a = null; 
         return self::initValue($a, 'clientVersionHistory');
     }
-
     /**
-     * @return \sm_clientVersionHistory clientVersionHistory item数据
-     */
-    public static function clientVersionHistory_getItem($itemid) {
+    * @return \sm_clientVersionHistory clientVersionHistory item数据 
+    */
+    public static function clientVersionHistory_getItem($itemid)
+    { 
         return self::get_hash_item('clientVersionHistory', $itemid);
     }
-
     /**
-     * 分区列表
-     * @return \zonelist
-     */
-    public static function zonelist() {
-        static $a = null;
+    * 分区列表
+    * @return \zonelist
+    */
+    public static function zonelist()
+    { 
+        static $a = null; 
         return self::initValue($a, 'zonelist');
     }
-
     /**
-     * @return \sm_zonelist zonelist item数据
-     */
-    public static function zonelist_getItem($itemid) {
+    * @return \sm_zonelist zonelist item数据 
+    */
+    public static function zonelist_getItem($itemid)
+    { 
         return self::get_hash_item('zonelist', $itemid);
     }
-
     /**
-     * 错误信息表
-     * @return \errmsg
-     */
-    public static function errmsg() {
-        static $a = null;
+    * 错误信息表
+    * @return \errmsg
+    */
+    public static function errmsg()
+    { 
+        static $a = null; 
         return self::initValue($a, 'errmsg');
     }
-
     /**
-     * @return \sm_errmsg errmsg item数据
-     */
-    public static function errmsg_getItem($itemid) {
+    * @return \sm_errmsg errmsg item数据 
+    */
+    public static function errmsg_getItem($itemid)
+    { 
         return self::get_hash_item('errmsg', $itemid);
     }
-
     /**
-     * 技能表
-     * @return \skills
-     */
-    public static function skills() {
-        static $a = null;
-        return self::initValue($a, 'skills');
-    }
-
-    /**
-     * @return \sm_skills skills item数据
-     */
-    public static function skills_getItem($itemid) {
-        return self::get_hash_item('skills', $itemid);
-    }
-
-    /**
-     * 活动: 七日签到
-     * @return \activity_day7
-     */
-    public static function activity_day7() {
-        static $a = null;
+    * 活动: 七日签到
+    * @return \activity_day7
+    */
+    public static function activity_day7()
+    { 
+        static $a = null; 
         return self::initValue($a, 'activity_day7');
     }
-
     /**
-     * @return \sm_activity_day7 activity_day7 item数据
-     */
-    public static function activity_day7_getItem($itemid) {
+    * @return \sm_activity_day7 activity_day7 item数据 
+    */
+    public static function activity_day7_getItem($itemid)
+    { 
         return self::get_hash_item('activity_day7', $itemid);
     }
-
     /**
-     * 公共兑换码
-     * @return \token_PublicGift
-     */
-    public static function token_PublicGift() {
-        static $a = null;
+    * 公共兑换码
+    * @return \token_PublicGift
+    */
+    public static function token_PublicGift()
+    { 
+        static $a = null; 
         return self::initValue($a, 'token_PublicGift');
     }
-
     /**
-     * @return \sm_token_PublicGift token_PublicGift item数据
-     */
-    public static function token_PublicGift_getItem($itemid) {
+    * @return \sm_token_PublicGift token_PublicGift item数据 
+    */
+    public static function token_PublicGift_getItem($itemid)
+    { 
         return self::get_hash_item('token_PublicGift', $itemid);
     }
-
     /**
-     * 活动: 体力加油站
-     * @return \activity_tiligift
-     */
-    public static function activity_tiligift() {
-        static $a = null;
+    * 活动: 体力加油站
+    * @return \activity_tiligift
+    */
+    public static function activity_tiligift()
+    { 
+        static $a = null; 
         return self::initValue($a, 'activity_tiligift');
     }
-
     /**
-     * @return \sm_activity_tiligift activity_tiligift item数据
-     */
-    public static function activity_tiligift_getItem($itemid) {
+    * @return \sm_activity_tiligift activity_tiligift item数据 
+    */
+    public static function activity_tiligift_getItem($itemid)
+    { 
         return self::get_hash_item('activity_tiligift', $itemid);
     }
-
     /**
-     * 活动: 等级礼包
-     * @return \activity_levelgift
-     */
-    public static function activity_levelgift() {
-        static $a = null;
+    * 活动: 等级礼包
+    * @return \activity_levelgift
+    */
+    public static function activity_levelgift()
+    { 
+        static $a = null; 
         return self::initValue($a, 'activity_levelgift');
     }
-
     /**
-     * @return \sm_activity_levelgift activity_levelgift item数据
-     */
-    public static function activity_levelgift_getItem($itemid) {
+    * @return \sm_activity_levelgift activity_levelgift item数据 
+    */
+    public static function activity_levelgift_getItem($itemid)
+    { 
         return self::get_hash_item('activity_levelgift', $itemid);
     }
-
     /**
-     * 技能表根据分类分组
-     * @return \skillTypeArr
-     */
-    public static function skillTypeArr() {
-        static $a = null;
-        return self::initValue($a, 'skillTypeArr');
-    }
-
-    /**
-     * @return \sm_skillTypeArr skillTypeArr itemArray
-     */
-    public static function skillTypeArr_getItemArray($key) {
-        return self::get_hash_item('skillTypeArr', $key);
-    }
-
-    /**
-     * 章节表
-     * @return \gate
-     */
-    public static function gate() {
-        static $a = null;
+    * 章节表
+    * @return \gate
+    */
+    public static function gate()
+    { 
+        static $a = null; 
         return self::initValue($a, 'gate');
     }
-
     /**
-     * @return \sm_gate gate item数据
-     */
-    public static function gate_getItem($itemid) {
+    * @return \sm_gate gate item数据 
+    */
+    public static function gate_getItem($itemid)
+    { 
         return self::get_hash_item('gate', $itemid);
     }
-
     /**
-     * 角色
-     * @return \hero
-     */
-    public static function hero() {
-        static $a = null;
+    * 角色
+    * @return \hero
+    */
+    public static function hero()
+    { 
+        static $a = null; 
         return self::initValue($a, 'hero');
     }
-
     /**
-     * @return \sm_hero hero item数据
-     */
-    public static function hero_getItem($itemid) {
+    * @return \sm_hero hero item数据 
+    */
+    public static function hero_getItem($itemid)
+    { 
         return self::get_hash_item('hero', $itemid);
     }
-
     /**
-     * 装备表
-     * @return \equip
-     */
-    public static function equip() {
-        static $a = null;
+    * 装备表
+    * @return \equip
+    */
+    public static function equip()
+    { 
+        static $a = null; 
         return self::initValue($a, 'equip');
     }
-
     /**
-     * @return \sm_equip equip item数据
-     */
-    public static function equip_getItem($itemid) {
+    * @return \sm_equip equip item数据 
+    */
+    public static function equip_getItem($itemid)
+    { 
         return self::get_hash_item('equip', $itemid);
     }
-
     /**
-     * 装备升级表
-     * @return \equip_levelupgrade
-     */
-    public static function equip_levelupgrade() {
-        static $a = null;
+    * 装备升级表
+    * @return \equip_levelupgrade
+    */
+    public static function equip_levelupgrade()
+    { 
+        static $a = null; 
         return self::initValue($a, 'equip_levelupgrade');
     }
-
     /**
-     * @return \sm_equip_levelupgrade equip_levelupgrade item数据
-     */
-    public static function equip_levelupgrade_getItem($itemid) {
+    * @return \sm_equip_levelupgrade equip_levelupgrade item数据 
+    */
+    public static function equip_levelupgrade_getItem($itemid)
+    { 
         return self::get_hash_item('equip_levelupgrade', $itemid);
     }
-
     /**
-     * 章节礼包表
-     * @return \shop_gategift
-     */
-    public static function shop_gategift() {
-        static $a = null;
+    * 章节礼包表
+    * @return \shop_gategift
+    */
+    public static function shop_gategift()
+    { 
+        static $a = null; 
         return self::initValue($a, 'shop_gategift');
     }
-
     /**
-     * @return \sm_shop_gategift shop_gategift item数据
-     */
-    public static function shop_gategift_getItem($itemid) {
+    * @return \sm_shop_gategift shop_gategift item数据 
+    */
+    public static function shop_gategift_getItem($itemid)
+    { 
         return self::get_hash_item('shop_gategift', $itemid);
     }
-
     /**
-     * 每日商店
-     * @return \shop_daily
-     */
-    public static function shop_daily() {
-        static $a = null;
+    * 每日商店
+    * @return \shop_daily
+    */
+    public static function shop_daily()
+    { 
+        static $a = null; 
         return self::initValue($a, 'shop_daily');
     }
-
     /**
-     * @return \sm_shop_daily shop_daily item数据
-     */
-    public static function shop_daily_getItem($itemid) {
+    * @return \sm_shop_daily shop_daily item数据 
+    */
+    public static function shop_daily_getItem($itemid)
+    { 
         return self::get_hash_item('shop_daily', $itemid);
     }
-
     /**
-     * 钻石
-     * @return \shop_cash
-     */
-    public static function shop_cash() {
-        static $a = null;
+    * 钻石
+    * @return \shop_cash
+    */
+    public static function shop_cash()
+    { 
+        static $a = null; 
         return self::initValue($a, 'shop_cash');
     }
-
     /**
-     * @return \sm_shop_cash shop_cash item数据
-     */
-    public static function shop_cash_getItem($itemid) {
+    * @return \sm_shop_cash shop_cash item数据 
+    */
+    public static function shop_cash_getItem($itemid)
+    { 
         return self::get_hash_item('shop_cash', $itemid);
     }
-
     /**
-     * 金币
-     * @return \shop_gold
-     */
-    public static function shop_gold() {
-        static $a = null;
+    * 金币
+    * @return \shop_gold
+    */
+    public static function shop_gold()
+    { 
+        static $a = null; 
         return self::initValue($a, 'shop_gold');
     }
-
     /**
-     * @return \sm_shop_gold shop_gold item数据
-     */
-    public static function shop_gold_getItem($itemid) {
+    * @return \sm_shop_gold shop_gold item数据 
+    */
+    public static function shop_gold_getItem($itemid)
+    { 
         return self::get_hash_item('shop_gold', $itemid);
     }
-
     /**
-     *
-     * @return \shop_supply
-     */
-    public static function shop_supply() {
-        static $a = null;
+    * 
+    * @return \shop_supply
+    */
+    public static function shop_supply()
+    { 
+        static $a = null; 
         return self::initValue($a, 'shop_supply');
     }
-
     /**
-     * @return \sm_shop_supply shop_supply item数据
-     */
-    public static function shop_supply_getItem($itemid) {
+    * @return \sm_shop_supply shop_supply item数据 
+    */
+    public static function shop_supply_getItem($itemid)
+    { 
         return self::get_hash_item('shop_supply', $itemid);
     }
-
     /**
-     * 商城军备
-     * @return \shop_junbei
-     */
-    public static function shop_junbei() {
-        static $a = null;
+    * 商城军备
+    * @return \shop_junbei
+    */
+    public static function shop_junbei()
+    { 
+        static $a = null; 
         return self::initValue($a, 'shop_junbei');
     }
-
     /**
-     * @return \sm_shop_junbei shop_junbei item数据
-     */
-    public static function shop_junbei_getItem($itemid) {
+    * @return \sm_shop_junbei shop_junbei item数据 
+    */
+    public static function shop_junbei_getItem($itemid)
+    { 
         return self::get_hash_item('shop_junbei', $itemid);
     }
-
     /**
-     * 挑战表
-     * @return \gate_challenge
-     */
-    public static function gate_challenge() {
-        static $a = null;
+    * 挑战表
+    * @return \gate_challenge
+    */
+    public static function gate_challenge()
+    { 
+        static $a = null; 
         return self::initValue($a, 'gate_challenge');
     }
-
     /**
-     * @return \sm_gate_challenge gate_challenge item数据
-     */
-    public static function gate_challenge_getItem($itemid) {
+    * @return \sm_gate_challenge gate_challenge item数据 
+    */
+    public static function gate_challenge_getItem($itemid)
+    { 
         return self::get_hash_item('gate_challenge', $itemid);
     }
-
     /**
-     * 进化表
-     * @return \evolve
-     */
-    public static function evolve() {
-        static $a = null;
+    * 进化表
+    * @return \evolve
+    */
+    public static function evolve()
+    { 
+        static $a = null; 
         return self::initValue($a, 'evolve');
     }
-
     /**
-     * @return \sm_evolve evolve item数据
-     */
-    public static function evolve_getItem($itemid) {
+    * @return \sm_evolve evolve item数据 
+    */
+    public static function evolve_getItem($itemid)
+    { 
         return self::get_hash_item('evolve', $itemid);
     }
-
     /**
-     * 7日签到累计
-     * @return \active_day7_accumulate
-     */
-    public static function active_day7_accumulate() {
-        static $a = null;
+    * 7日签到累计
+    * @return \active_day7_accumulate
+    */
+    public static function active_day7_accumulate()
+    { 
+        static $a = null; 
         return self::initValue($a, 'active_day7_accumulate');
     }
-
     /**
-     * @return \sm_active_day7_accumulate active_day7_accumulate item数据
-     */
-    public static function active_day7_accumulate_getItem($itemid) {
+    * @return \sm_active_day7_accumulate active_day7_accumulate item数据 
+    */
+    public static function active_day7_accumulate_getItem($itemid)
+    { 
         return self::get_hash_item('active_day7_accumulate', $itemid);
     }
-
     /**
-     * 装备合成(进化)品阶表
-     * @return \equip_evolve
-     */
-    public static function equip_evolve() {
-        static $a = null;
+    * 装备合成(进化)品阶表
+    * @return \equip_evolve
+    */
+    public static function equip_evolve()
+    { 
+        static $a = null; 
         return self::initValue($a, 'equip_evolve');
     }
-
     /**
-     * @return \sm_equip_evolve equip_evolve item数据
-     */
-    public static function equip_evolve_getItem($rarity, $qual, $posId) {
+    * @return \sm_equip_evolve equip_evolve item数据 
+    */
+    public static function equip_evolve_getItem($rarity, $qual, $posId)
+    { 
         return self::get_hash_item('equip_evolve', "$rarity-$qual-$posId");
     }
-
     /**
-     * 装备合成表
-     * @return \equip_compose
-     */
-    public static function equip_compose() {
-        static $a = null;
+    * 装备合成表
+    * @return \equip_compose
+    */
+    public static function equip_compose()
+    { 
+        static $a = null; 
         return self::initValue($a, 'equip_compose');
     }
-
     /**
-     * @return \sm_equip_compose equip_compose item数据
-     */
-    public static function equip_compose_getItem($itemid) {
+    * @return \sm_equip_compose equip_compose item数据 
+    */
+    public static function equip_compose_getItem($itemid)
+    { 
         return self::get_hash_item('equip_compose', $itemid);
     }
-
-    /**
-     * 剧情表
-     * @return \plot
-     */
-    public static function plot() {
-        static $a = null;
-        return self::initValue($a, 'plot');
-    }
-
-    /**
-     * @return \sm_plot plot item数据
-     */
-    public static function plot_getItem($gateId, $stage) {
-        return self::get_hash_item('plot', "$gateId-$stage");
-    }
-
     /**
-     * buff配置表
-     * @return \buff
-     */
-    public static function buff() {
-        static $a = null;
-        return self::initValue($a, 'buff');
-    }
-
-    /**
-     * @return \sm_buff buff item数据
-     */
-    public static function buff_getItem($itemid) {
-        return self::get_hash_item('buff', $itemid);
-    }
-
-    /*
-     * 每日任务累计表
-     * @return \task_accumulate
-     */
-    public static function task_accumulate() {
-        static $a = null;
-        return self::initValue($a, 'task_accumulate');
+    * 成就功能
+    * @return \achieve
+    */
+    public static function achieve()
+    { 
+        static $a = null; 
+        return self::initValue($a, 'achieve');
     }
-
     /**
-     * @return \sm_task_accumulate task_accumulate item数据
-     */
-    public static function task_accumulate_getItem($itemid) {
-        return self::get_hash_item('task_accumulate', $itemid);
+    * @return \sm_achieve achieve item数据 
+    */
+    public static function achieve_getItem($itemid)
+    { 
+        return self::get_hash_item('achieve', $itemid);
     }
-
     /**
-     * 任务表
-     * @return \task_step
-     */
-    public static function task_step() {
-        static $a = null;
+    * 任务表
+    * @return \task_step
+    */
+    public static function task_step()
+    { 
+        static $a = null; 
         return self::initValue($a, 'task_step');
     }
-
     /**
-     * @return \sm_task_step task_step item数据
-     */
-    public static function task_step_getItem($itemid) {
+    * @return \sm_task_step task_step item数据 
+    */
+    public static function task_step_getItem($itemid)
+    { 
         return self::get_hash_item('task_step', $itemid);
     }
-
-    /**
-     * 任务卡
-     * @return \taskcard
-     */
-    public static function taskcard() {
-        static $a = null;
-        return self::initValue($a, 'taskcard');
-    }
-
-    /**
-     * @return \sm_taskcard taskcard item数据
-     */
-    public static function taskcard_getItem($itemid) {
-        return self::get_hash_item('taskcard', $itemid);
-    }
-
     /**
-<<<<<<< HEAD
-    * 怪物技能表
-    * @return \monster_Skill
+    * 任务卡
+    * @return \taskcard
     */
-    public static function monster_Skill()
+    public static function taskcard()
     { 
         static $a = null; 
-        return self::initValue($a, 'monster_Skill');
+        return self::initValue($a, 'taskcard');
     }
     /**
-    * @return \sm_monster_Skill monster_Skill item数据 
+    * @return \sm_taskcard taskcard item数据 
     */
-    public static function monster_Skill_getItem($itemid)
+    public static function taskcard_getItem($itemid)
     { 
-        return self::get_hash_item('monster_Skill', $itemid);
+        return self::get_hash_item('taskcard', $itemid);
     }
     /**
     * 每日任务累计
@@ -661,22 +574,23 @@ class GameConfig {
     { 
         return self::get_hash_item('task_accumulate_week', $itemid);
     }
-    
     /**
-     * 当前版本(时间戳)
-     * @return \ver
-     */
-    public static function ver() {
-        static $a = null;
+    * 当前版本(时间戳)
+    * @return \ver
+    */
+    public static function ver()
+    { 
+        static $a = null; 
         return self::initValue($a, 'ver', false);
     }
-
     /**
-     * 客户端配置数据
-     * @return \client
-     */
-    public static function client() {
-        static $a = null;
+    * 客户端配置数据
+    * @return \client
+    */
+    public static function client()
+    { 
+        static $a = null; 
         return self::initValue($a, 'client', false);
     }
 }
+

+ 17 - 1
Gameserver/App/model/Const/GameConfig.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2023-09-25 16:37:34
+ // 日期: 2023-10-12 15:15:03
 ////////////////////
 
 /**
@@ -493,6 +493,22 @@ class GameConfig {
         return self::get_hash_item('equip_compose', $itemid);
     }
     /**
+    * 成就功能
+    * @return \achieve
+    */
+    public static function achieve()
+    { 
+        static $a = null; 
+        return self::initValue($a, 'achieve');
+    }
+    /**
+    * @return \sm_achieve achieve item数据 
+    */
+    public static function achieve_getItem($itemid)
+    { 
+        return self::get_hash_item('achieve', $itemid);
+    }
+    /**
     * 任务表
     * @return \task_step
     */

+ 52 - 0
Gameserver/App/model/Const/sm_achieve.php

@@ -0,0 +1,52 @@
+<?php
+////////////////////
+ // 由CodeGenerator创建。
+ // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
+ // author: gwang 
+ // 日期: 2023-10-12 15:09:43
+////////////////////
+
+
+/**
+ * Static Model achieve 成就功能
+ */
+class sm_achieve
+{
+
+    /**
+    * @var Int32 用途未知!!请到数据库中添加字段注释。  
+    */
+    public $id;
+
+    /**
+    * @var Int32 用途未知!!请到数据库中添加字段注释。  
+    */
+    public $typeId;
+
+    /**
+    * @var String 描述信息  
+    */
+    public $name;
+
+    /**
+    * @var String 条件参数信息 例:1,5,10,20  
+    */
+    public $paras;
+
+    /**
+    * @var Int32 成就信息的类型  
+    */
+    public $cmd;
+
+    /**
+    * @var String 奖励,跟条件参数信息的个数是对应的  
+    */
+    public $reward;
+
+    /**
+    * @var String 用途未知!!请到数据库中添加字段注释。  
+    */
+    public $etc;
+
+}
+

+ 1 - 1
Gameserver/App/model/Const/sm_equip.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2023-09-25 15:04:52
+ // 日期: 2023-09-26 11:34:52
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_equip_evolve.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2023-09-18 12:04:51
+ // 日期: 2023-09-26 11:34:52
 ////////////////////
 
 

+ 0 - 5
Gameserver/App/model/Const/sm_evolve.php

@@ -13,11 +13,6 @@
 class sm_evolve
 {
 
-    /**
-    * @var Int32 用途未知!!请到数据库中添加字段注释。  
-    */
-    public $id;
-
     /**
     * @var Int32 磁条块 default(0) 
     */

+ 1 - 6
Gameserver/App/model/Const/sm_gate.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2023-09-25 14:31:21
+ // 日期: 2023-10-07 15:04:52
 ////////////////////
 
 
@@ -20,11 +20,6 @@ class sm_gate
     */
     public $gateId;
 
-    /**
-    * @var Int32 关卡类型: 1 主线剧情, 2 主线挑战关卡  
-    */
-    public $type;
-
     /**
     * @var String 名称  
     */

+ 1 - 1
Gameserver/App/model/Const/sm_hero.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2023-09-15 10:04:51
+ // 日期: 2023-09-26 12:04:52
 ////////////////////
 
 

Vissa filer visades inte eftersom för många filer har ändrats