您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

25 行
427 B

  1. <?php
  2. namespace common\models;
  3. use yii\mongodb;
  4. class MBaseUnique extends mongodb\ActiveRecord {
  5. public static function collectionName()
  6. {
  7. return ['zzcx','base_unique'];
  8. }
  9. public function attributes()
  10. {
  11. return [
  12. '_id',
  13. 'time_stamp',
  14. ];
  15. }
  16. public function rules()
  17. {
  18. return parent::rules(); // TODO: Change the autogenerated stub
  19. }
  20. }