|
- <?php
-
- namespace backend\modules\api\models;
-
- use yii\db\ActiveRecord;
-
- /**
- * This is the model class for table "base_unique_id2".
- *
- * @property integer $ID
- * @property string $UNIQUE_ID
- */
- class BaseUniqueId2 extends ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'base_unique_id2';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['ID'], 'required'],
- [['ID', 'UNIQUE_ID'], 'integer'],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'UNIQUE_ID' => '序列值',
- ];
- }
- }
|