Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

49 rader
900 B

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