12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace app\common\model;
- use think\db\Query;
- use think\Model;
- use think\model\relation\BelongsTo;
- class FeedbackBusiness extends Model
- {
-
-
- // 表名
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = true;
- // 定义时间戳字段名
- protected $updateTime = false;
- protected $deleteTime = false;
- // 追加属性
- protected $append = [
- ];
- protected $type=[
- ];
- }
|