Syncvrrecord.php 553 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace common\models;
  3. use Yii;
  4. class Syncvrrecord extends Common
  5. {
  6. public function rules()
  7. {
  8. return [
  9. [['this_vrid','code','auditor_name','oss_content'], 'required', 'message' => '{attribute}不能为空'],
  10. ['this_content','safe']
  11. ];
  12. }
  13. public function attributeLabels()
  14. {
  15. return [
  16. 'this_vrid' => 'VR本地id',
  17. 'code' => '同步类型',
  18. 'auditor_name' => '同步审核人',
  19. 'oss_content' => '同步信息',
  20. ];
  21. }
  22. }