This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/api/model/dealer/Setting.php
2020-04-25 22:20:29 +08:00

22 lines
326 B
PHP

<?php
namespace app\api\model\dealer;
use app\common\model\dealer\Setting as SettingModel;
/**
* 分销商设置模型
* Class Setting
* @package app\api\model\dealer
*/
class Setting extends SettingModel
{
/**
* 隐藏字段
* @var array
*/
protected $hidden = [
'update_time',
];
}