调整
This commit is contained in:
parent
829476451b
commit
a2619b235e
12
app/models/AccessToken.php
Normal file
12
app/models/AccessToken.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* AccessToken表
|
||||
* @author QZQ
|
||||
*/
|
||||
class AccessToken extends ModelBase{
|
||||
|
||||
public function initialize(){
|
||||
$this->setSource("smsapioauth2_accesstoken");
|
||||
}
|
||||
|
||||
}
|
||||
12
app/models/AppInfo.php
Normal file
12
app/models/AppInfo.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* AppInfo表
|
||||
* @author QZQ
|
||||
*/
|
||||
class AppInfo extends ModelBase{
|
||||
|
||||
public function initialize(){
|
||||
$this->setSource("smsapioauth2_appinfo");
|
||||
}
|
||||
|
||||
}
|
||||
12
app/models/RefreshToken.php
Normal file
12
app/models/RefreshToken.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* RefreshToken表
|
||||
* @author QZQ
|
||||
*/
|
||||
class RefreshToken extends ModelBase{
|
||||
|
||||
public function initialize(){
|
||||
$this->setSource("smsapioauth2_refreshtoken");
|
||||
}
|
||||
|
||||
}
|
||||
12
app/models/TempCode.php
Normal file
12
app/models/TempCode.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* TempCode表
|
||||
* @author QZQ
|
||||
*/
|
||||
class TempCode extends ModelBase{
|
||||
|
||||
public function initialize(){
|
||||
$this->setSource("smsapioauth2_tempcode");
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user