'正常', self::STATUS_PAUSE => '暂停' ]; protected $table = 'box_binding'; protected $guarded = []; public static function byBoxNoGetAutoCloseTime($box_no) { return Cache::remember('byBoxNoGetAutoCloseTime:' . $box_no, Carbon::now()->addSeconds(CacheMap::CACHE_TIME), function () use ($box_no) { return self::where('box_no', $box_no)->value('vibfilterremindt') ?? 30; }); } }