Exemplo n.º 1
0
 /**
  * @range:字段范围    @note:注释   @note_type:翻译模式   @type:字段类型
  * */
 function __construct($range, $note = "", $note_type = "auto", $type = "")
 {
     parent::__construct($note, $type);
     $this->range = $range;
     $this->note_type = $note_type;
 }
Exemplo n.º 2
0
 /**
  * @final:固定参数    @note:注释   @type:字段类型
  * */
 function __construct($final, $note = "", $type = "")
 {
     parent::__construct($note, $type);
     $this->final = $final;
 }
Exemplo n.º 3
0
 /**
  * @note:注释
  * */
 function __construct($note = "")
 {
     parent::__construct($note, DataHttpElement::HTTP_KEY_FILE);
 }
Exemplo n.º 4
0
 /**
  * @name:类名    @note:注释   @isShare:是否共享数据   @type:字段类型
  * */
 function __construct($name = "", $note = "", $isShare = false, $type = "")
 {
     parent::__construct($note, $type);
     $this->name = $name;
     $this->isShare = $isShare;
 }