old.kafkaoffset.php 303 B

12345678910111213141516171819
  1. <?php
  2. namespace app\models;
  3. use yii\mongodb\ActiveRecord;
  4. class KafkaOffset extends ActiveRecord {
  5. /**
  6. * @inheritdoc
  7. */
  8. public static function collectionName() {
  9. return 'kafkfa_offset';
  10. }
  11. public function attributes() {
  12. return ['_id', 'name', 'offset',];
  13. }
  14. }