1234567891011121314151617181920212223242526272829303132 |
- <?php
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- namespace loyalsoft;
- /**
- * Description of Ins_Hero
- *
- * @author c'y'zhao
- */
- class Ins_Hero extends Object_ext {
-
- /**
- * hero id
- * @var type
- */
- public $Id = 0;
-
- public function __construct($arg = null) {
- if($arg == null){
- } else {
- parent::__construct($arg);
- }
-
-
- }
- }
|