作者 lyh

变更数据

@@ -145,7 +145,7 @@ class RemainDay extends Command @@ -145,7 +145,7 @@ class RemainDay extends Command
145 */ 145 */
146 public function remainDay($item,$deploy_build){ 146 public function remainDay($item,$deploy_build){
147 //默认版本统计 147 //默认版本统计
148 - if($deploy_build['service_duration'] == 0){ 148 + if($deploy_build['service_duration'] == 0 || $deploy_build['plan'] == 0){
149 return false; 149 return false;
150 } 150 }
151 //默认版本计算剩余服务时常 151 //默认版本计算剩余服务时常
  1 +<?php
  2 +/**
  3 + * @remark :
  4 + * @name :AiBlogKeyword.php
  5 + * @author :lyh
  6 + * @method :post
  7 + * @time :2025/11/4 14:26
  8 + */
  9 +
  10 +namespace App\Models\Ai;
  11 +
  12 +use App\Models\Base;
  13 +
  14 +class AiBlogKeyword extends Base
  15 +{
  16 + protected $table = 'gl_ai_blog_keyword';
  17 +}