You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

82 lines
1.8 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. use yii\db\Exception;
  5. /**
  6. * This is the model class for table "base_user_role".
  7. *
  8. * @property integer $ID
  9. * @property integer $USER_ID
  10. * @property integer $USER_ROLE
  11. * @property integer $CANCEL_FLAG
  12. * @property integer $CREATE_USER_ID
  13. * @property string $CREATE_TIME
  14. * @property integer $UPDATE_USER_ID
  15. * @property string $UPDATE_TIME
  16. */
  17. class BaseUserRole extends \yii\db\ActiveRecord
  18. {
  19. /**
  20. * @inheritdoc
  21. */
  22. public static function tableName()
  23. {
  24. return 'base_user_role';
  25. }
  26. /**
  27. * @inheritdoc
  28. */
  29. public function rules()
  30. {
  31. return [
  32. [['USER_ID', 'USER_ROLE', 'CANCEL_FLAG', 'CREATE_USER_ID', 'UPDATE_USER_ID'], 'integer'],
  33. [['UPDATE_TIME'], 'safe'],
  34. [['CREATE_TIME'], 'string', 'max' => 20],
  35. ];
  36. }
  37. /**
  38. * @inheritdoc
  39. */
  40. public function attributeLabels()
  41. {
  42. return [
  43. 'ID' => 'ID',
  44. 'USER_ID' => 'User ID',
  45. 'USER_ROLE' => 'User Role',
  46. 'CANCEL_FLAG' => 'Cancel Flag',
  47. 'CREATE_USER_ID' => 'Create User ID',
  48. 'CREATE_TIME' => 'Create Time',
  49. 'UPDATE_USER_ID' => 'Update User ID',
  50. 'UPDATE_TIME' => 'Update Time',
  51. ];
  52. }
  53. /**
  54. * Function Description:插入信息
  55. * Function Name: insertUserRole
  56. * @param $user_id
  57. * @param $user_role
  58. * @param $cancel_flag
  59. *
  60. * @return bool
  61. *
  62. * @author 李健
  63. */
  64. public function insertUserRole($user_id,$user_role,$cancel_flag)
  65. {
  66. try {
  67. $this->USER_ID = $user_id;
  68. $this->USER_ROLE = $user_role;
  69. $this->CANCEL_FLAG = $cancel_flag;
  70. return $this->save();
  71. } catch (Exception $e) {
  72. return false;
  73. }
  74. }
  75. }