1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace App\Modules\Push\Models;
- use App\Consts\PushConst;
- use Illuminate\Database\Eloquent\Model;
- class QappPushTask extends Model
- {
- protected $table = 'qapp_push_task';
- protected $fillable = ['uid', 'package_id', 'type', 'title', 'content', 'url', 'num',
- 'status', 'providers', 'push_time', 'push_filter', 'push_result', 'select_user_status'];
- /**
- * @param $id
- * @return array
- */
- public static function getPushTaskById($id)
- {
- if (empty($id)) {
- return [];
- }
- return self::where('id', $id)->first();
- }
- /**
- * @param $id
- * @param $data
- * @return bool
- */
- public static function updatePushTask($id, $data): bool
- {
- if (empty($id) || empty($data)) {
- return false;
- }
- return self::where('id', $id)->update($data);
- }
- /**
- * @return mixed
- */
- public static function getValidTask()
- {
- return self::where('status', PushConst::PUSH_STATUS_TODO)
- ->where('select_user_status', PushConst::SELECT_USER_OK)
- ->orderBy('push_time', 'ASC')
- ->first();
- }
- }
|