49 lines
1000 B
PHP
49 lines
1000 B
PHP
<?php
|
|
|
|
namespace common\modelsgii\oldDb;
|
|
|
|
/**
|
|
* This is the model class for table "yii_store_department".
|
|
*
|
|
* @property int $id
|
|
* @property int $store_id 门店id
|
|
* @property int $depart_id 科室id
|
|
* @property int $created_at
|
|
* @property int $updated_at
|
|
*/
|
|
class StoreDepartment extends \common\core\BaseActiveRecord
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function tableName()
|
|
{
|
|
return 'yii_store_department';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
[['store_id', 'depart_id'], 'required'],
|
|
[['store_id', 'depart_id', 'created_at', 'updated_at'], 'integer'],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function attributeLabels()
|
|
{
|
|
return [
|
|
'id' => 'ID',
|
|
'store_id' => 'Store ID',
|
|
'depart_id' => 'Depart ID',
|
|
'created_at' => 'Created At',
|
|
'updated_at' => 'Updated At',
|
|
];
|
|
}
|
|
}
|