|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use Yii;
- use yii\db\Exception;
-
- /**
- * This is the model class for table "base_user_role".
- *
- * @property integer $ID
- * @property integer $USER_ID
- * @property integer $USER_ROLE
- * @property integer $CANCEL_FLAG
- * @property integer $CREATE_USER_ID
- * @property string $CREATE_TIME
- * @property integer $UPDATE_USER_ID
- * @property string $UPDATE_TIME
- */
- class BaseUserRole extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'base_user_role';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['USER_ID', 'USER_ROLE', 'CANCEL_FLAG', 'CREATE_USER_ID', 'UPDATE_USER_ID'], 'integer'],
- [['UPDATE_TIME'], 'safe'],
- [['CREATE_TIME'], 'string', 'max' => 20],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'USER_ID' => 'User ID',
- 'USER_ROLE' => 'User Role',
- 'CANCEL_FLAG' => 'Cancel Flag',
- 'CREATE_USER_ID' => 'Create User ID',
- 'CREATE_TIME' => 'Create Time',
- 'UPDATE_USER_ID' => 'Update User ID',
- 'UPDATE_TIME' => 'Update Time',
- ];
- }
-
- /**
- * Function Description:插入信息
- * Function Name: insertUserRole
- * @param $user_id
- * @param $user_role
- * @param $cancel_flag
- *
- * @return bool
- *
- * @author 李健
- */
- public function insertUserRole($user_id,$user_role,$cancel_flag)
- {
- try {
- $this->USER_ID = $user_id;
- $this->USER_ROLE = $user_role;
- $this->CANCEL_FLAG = $cancel_flag;
- return $this->save();
- } catch (Exception $e) {
- return false;
- }
- }
- }
|