|
- <?php
-
- namespace backend\modules\api\models;
-
- use Yii;
-
- /**
- * This is the model class for table "base_unique_log".
- *
- * @property integer $ID
- * @property string $UNIQUE_ID1
- * @property string $UNIQUE_ID2
- * @property string $UPDATE_TIME
- */
- class BaseUniqueLog extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'base_unique_log';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['UNIQUE_ID1', 'UNIQUE_ID2'], 'integer'],
- [['UPDATE_TIME'], 'string', 'max' => 20],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'UNIQUE_ID1' => '序列值',
- 'UNIQUE_ID2' => 'Unique Id2',
- 'UPDATE_TIME' => 'Update Time',
- ];
- }
- }
|