123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <?php
- /**
- * 返回的数据实体
- * @author auto create
- */
- class AppInfoDoModel
- {
-
- /**
- * alias
- **/
- public $alias;
-
- /**
- * 应用通道
- **/
- public $app_channel;
-
- /**
- * 应用ID
- **/
- public $app_id;
-
- /**
- * 应用key
- **/
- public $app_key;
-
- /**
- * 应用类型
- **/
- public $app_type;
-
- /**
- * 自动装载
- **/
- public $auto_install;
-
- /**
- * 客户端
- **/
- public $client_id;
-
- /**
- * 描述
- **/
- public $desc;
-
- /**
- * 设备ID
- **/
- public $dev_id;
-
- /**
- * 英文名称
- **/
- public $english_name;
-
- /**
- * 更新时间
- **/
- public $gmt_create;
-
- /**
- * 更新时间
- **/
- public $gmt_modified;
-
- /**
- * 图标
- **/
- public $icon_url;
-
- /**
- * ID
- **/
- public $id;
-
- /**
- * inheritConfig
- **/
- public $inherit_config;
-
- /**
- * 租户ID
- **/
- public $inst_id;
-
- /**
- * isDeleted
- **/
- public $is_deleted;
-
- /**
- * lastDiscards
- **/
- public $last_discards;
-
- /**
- * 主URL
- **/
- public $main_url;
-
- /**
- * 名称
- **/
- public $name;
-
- /**
- * 来源
- **/
- public $origin;
-
- /**
- * 预装载
- **/
- public $preset;
-
- /**
- * 大小
- **/
- public $size;
-
- /**
- * 标语
- **/
- public $slogan;
-
- /**
- * 状态
- **/
- public $status;
-
- /**
- * 子类型
- **/
- public $sub_type;
-
- /**
- * vhost
- **/
- public $v_host;
- }
- ?>
|