<?php


namespace common\models;
use Yii;

class Syncvrrecord extends Common
{

    public function rules()
    {
        return [
            [['this_vrid','code','auditor_name','oss_content'], 'required', 'message' => '{attribute}不能为空'],
            ['this_content','safe']
        ];
    }
    public function attributeLabels()
    {
        return [
            'this_vrid' => 'VR本地id',
            'code' => '同步类型',
            'auditor_name' => '同步审核人',
            'oss_content' => '同步信息',
        ];
    }
}