api/app/models/Refreshtoken.php

12 lines
173 B
PHP
Raw Normal View History

2023-04-10 12:49:07 +08:00
<?php
/**
2023-04-10 14:50:55 +08:00
* Refreshtoken表
2023-04-10 12:49:07 +08:00
* @author QZQ
*/
2023-04-10 14:50:55 +08:00
class Refreshtoken extends AppModel{
2023-04-10 12:49:07 +08:00
public function initialize(){
$this->setSource("smsapioauth2_refreshtoken");
}
}