| 1234567891011121314151617181920212223 |
- <?php
- declare (strict_types = 1);
- namespace app\model\api;
- use think\Model;
- /**
- * @mixin \think\Model
- */
- class Upsource extends Model
- {
- private $typeAr = [
- ["type"=>"img","title"=>"普通图片"],
- ["type"=>"icon","title"=>"图标"]
- ];
-
- public function getTypeData(){
- return $typeAr;
- }
-
-
- }
|