Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

45 righe
724 B

  1. <?php
  2. namespace backend\modules\api\models;
  3. use yii\db\ActiveRecord;
  4. /**
  5. * This is the model class for table "base_unique_id2".
  6. *
  7. * @property integer $ID
  8. * @property string $UNIQUE_ID
  9. */
  10. class BaseUniqueId2 extends ActiveRecord
  11. {
  12. /**
  13. * @inheritdoc
  14. */
  15. public static function tableName()
  16. {
  17. return 'base_unique_id2';
  18. }
  19. /**
  20. * @inheritdoc
  21. */
  22. public function rules()
  23. {
  24. return [
  25. [['ID'], 'required'],
  26. [['ID', 'UNIQUE_ID'], 'integer'],
  27. ];
  28. }
  29. /**
  30. * @inheritdoc
  31. */
  32. public function attributeLabels()
  33. {
  34. return [
  35. 'ID' => 'ID',
  36. 'UNIQUE_ID' => '序列值',
  37. ];
  38. }
  39. }