likang 2 years ago
parent
commit
fb285ae125

+ 1 - 0
catch/worklocation/database/migrations/20220712101110_work_record.php

@@ -36,6 +36,7 @@ class WorkRecord extends Migrator
             ->addColumn('fan_model', 'string', ['limit' => 50, 'null' => true, 'signed' => true, 'comment' => '风机模型',])
             ->addColumn('parts', 'string', ['limit' => 50, 'null' => true, 'signed' => true, 'comment' => '部件',])
             ->addColumn('boit_type', 'string', ['limit' => 50, 'null' => true, 'signed' => true, 'comment' => '螺栓型号',])
+            ->addColumn('work_sign', 'string', ['limit' => 50, 'null' => true, 'signed' => true, 'comment' => '工作位置',])
             ->addColumn('bolt_number', 'string', ['limit' => 50, 'null' => true, 'signed' => true, 'comment' => '螺栓编号',])
             ->addColumn('boit_total', 'integer', ['limit' => MysqlAdapter::INT_REGULAR, 'null' => true, 'signed' => true, 'comment' => '螺栓总数',])
             ->addColumn('wrench_number', 'string', ['limit' => 50, 'null' => true, 'signed' => true, 'comment' => '扳手编号',])

+ 3 - 2
catch/worklocation/model/WorkRecord.php

@@ -30,6 +30,8 @@ class WorkRecord extends Model
         'parts',
         // 螺栓型号
         'boit_type',
+        //工作位置
+        'work_sign',
         // 螺栓编号
         'bolt_number',
         // 螺栓总数
@@ -114,7 +116,7 @@ class WorkRecord extends Model
     //获取工作位置型号
     public function getWorkLocalNameAttr()
     {
-        $code = $this->work_local;
+        $code = $this->work_sign;
         $value = $this->get_dict_data(2, $code);
         return $value;
     }
@@ -129,7 +131,6 @@ class WorkRecord extends Model
         $value = $this->get_dict_data(4, $code);
         return $value;
     }
-
     /**
      * 
      * @param [type] $type 类型