<?php
|
|
namespace app\operations\model\plus\ticket;
|
|
use app\common\model\plus\ticket\Ticket as TicketModel;
|
|
/**
|
* 模型
|
*/
|
class Ticket extends TicketModel
|
{
|
/**
|
* 获取列表
|
*/
|
public function getList($params)
|
{
|
return $this->with(['image.file','user'])
|
->where('is_delete', '=', 0)
|
->order(['create_time' => 'desc'])
|
->paginate($params);
|
|
}
|
|
/**
|
* 软删除
|
*/
|
public function setDelete()
|
{
|
return $this->save(['is_delete' => 1]);
|
}
|
}
|