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.
14 lines
210 B
14 lines
210 B
8 months ago
|
<?php
|
||
|
|
||
|
namespace app\common\model;
|
||
|
|
||
|
use cores\BaseModel;
|
||
|
|
||
|
class WxserverAccount extends BaseModel
|
||
|
{
|
||
|
// 定义表名
|
||
|
protected $name = 'wxserver_account';
|
||
|
|
||
|
// 定义主键
|
||
|
protected $pk = 'id';
|
||
|
}
|