* Date: 2020/2/4 * Time: 12:47 */ namespace app\common\model; use think\Model; class ConfigOption extends Model { protected $autoWriteTimestamp = false; const STATUS_OPEN = 1;//开启 const STATUS_CLOSE = 0;//关闭 //关联配置 public function config() { return $this->belongsTo('Config', 'pid'); } }