| 12345678910111213141516171819202122232425262728293031 | <?phpnamespace app\common\model;use think\Model;class QuestionItem extends Model{            // 表名    protected $name = 'question_item';        // 自动写入时间戳字段    protected $autoWriteTimestamp = 'integer';    // 定义时间戳字段名    protected $createTime = 'createtime';    protected $updateTime = 'updatetime';    protected $deleteTime = false;    // 追加属性    protected $append = [    ];}
 |