中秋节快乐

This commit is contained in:
Alone
2024-09-14 17:00:49 +08:00
parent 610dee88cd
commit dff1b038b1
4286 changed files with 807503 additions and 6 deletions
+36
View File
@@ -0,0 +1,36 @@
<?php
namespace app\model;
use app\model\QfShop;
class Feedback extends QfShop
{
/**
* 主键
* @var string
*/
protected $pk = 'id';
/**
* 是否需要自动写入时间戳
* @var bool
*/
protected $autoWriteTimestamp = true;
/**
* 只读属性
* @var array
*/
protected $readonly = [
'id',
];
/**
* 字段类型或者格式转换
* @var array
*/
protected $type = [
'id' => 'integer',
];
}