11 lines
146 B
PHP
11 lines
146 B
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
use think\Model;
|
|
|
|
class Attachment extends Model
|
|
{
|
|
// 设置表名
|
|
protected $name = 'attachments';
|
|
}
|