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.
22 lines
382 B
22 lines
382 B
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
use think\Model;
|
|
|
|
class ProjectCategoryFlow extends Model
|
|
{
|
|
// 表名
|
|
protected $name = 'project_category_flow';
|
|
// 开启自动写入时间戳字段
|
|
protected $autoWriteTimestamp = 'int';
|
|
|
|
protected $resultSetType = 'collection';
|
|
|
|
|
|
protected $type = [
|
|
'img_urls' => 'json',
|
|
'img_names' => 'json'
|
|
];
|
|
|
|
} |