1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| <?php
|
| namespace app\api\model\plus\agent;
|
| use app\common\model\plus\agent\Setting as SettingModel;
|
| /**
| * 分销商设置模型
| */
| class Setting extends SettingModel
| {
| /**
| * 隐藏字段
| */
| protected $hidden = [
| 'update_time',
| ];
|
| }
|
|