13 lines
169 B
PHP
13 lines
169 B
PHP
|
<?php
|
||
|
|
||
|
namespace app\manystore\model;
|
||
|
|
||
|
use think\Model;
|
||
|
|
||
|
class SchoolActivityRefund extends Model
|
||
|
{
|
||
|
// 表名
|
||
|
protected $name = 'school_activity_refund';
|
||
|
|
||
|
}
|