You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MBaseUnique.php 427 B

3 年之前
123456789101112131415161718192021222324
  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. }