Ver código fonte

likang 维保记录映射表

likang 2 anos atrás
pai
commit
a03a7ba6d2

+ 69 - 0
catch/hydraulic/controller/Maintenance.php

@@ -0,0 +1,69 @@
+<?php
+
+namespace catchAdmin\hydraulic\controller;
+
+use catcher\base\CatchRequest as Request;
+use catcher\CatchResponse;
+use catcher\base\CatchController;
+use catchAdmin\hydraulic\model\Maintenance as maintenanceModel;
+
+class Maintenance extends CatchController
+{
+    protected $maintenanceModel;
+    
+    public function __construct(MaintenanceModel $maintenanceModel)
+    {
+        $this->maintenanceModel = $maintenanceModel;
+    }
+    
+    /**
+     * 列表
+     * @time 2022年05月23日 09:40
+     * @param Request $request 
+     */
+    public function index(Request $request) : \think\Response
+    {
+        return CatchResponse::paginate($this->maintenanceModel->getList());
+    }
+    
+    /**
+     * 保存信息
+     * @time 2022年05月23日 09:40
+     * @param Request $request 
+     */
+    public function save(Request $request) : \think\Response
+    {
+        return CatchResponse::success($this->maintenanceModel->storeBy($request->post()));
+    }
+    
+    /**
+     * 读取
+     * @time 2022年05月23日 09:40
+     * @param $id 
+     */
+    public function read($id) : \think\Response
+    {
+        return CatchResponse::success($this->maintenanceModel->findBy($id));
+    }
+    
+    /**
+     * 更新
+     * @time 2022年05月23日 09:40
+     * @param Request $request 
+     * @param $id
+     */
+    public function update(Request $request, $id) : \think\Response
+    {
+        return CatchResponse::success($this->maintenanceModel->updateBy($id, $request->post()));
+    }
+    
+    /**
+     * 删除
+     * @time 2022年05月23日 09:40
+     * @param $id
+     */
+    public function delete($id) : \think\Response
+    {
+        return CatchResponse::success($this->maintenanceModel->deleteBy($id));
+    }
+}

+ 42 - 0
catch/hydraulic/database/migrations/20220523094019_maintenancemapper.php

@@ -0,0 +1,42 @@
+<?php
+
+use think\migration\Migrator;
+use think\migration\db\Column;
+use Phinx\Db\Adapter\MysqlAdapter;
+
+class Maintenancemapper extends Migrator
+{
+    /**
+     * Change Method.
+     *
+     * Write your reversible migrations using this method.
+     *
+     * More information on writing migrations is available here:
+     * http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
+     *
+     * The following commands can be used in this method and Phinx will
+     * automatically reverse them when rolling back:
+     *
+     *    createTable
+     *    renameTable
+     *    addColumn
+     *    renameColumn
+     *    addIndex
+     *    addForeignKey
+     *
+     * Remember to call "create()" or "update()" and NOT "save()" when working
+     * with the Table class.
+     */
+    public function change()
+    {
+        $table = $this->table('maintenancemapper', ['engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '维保记录相关字典映射表' ,'id' => 'id','signed' => true ,'primary_key' => ['id']]);
+        $table->addColumn('device_type', 'string', ['limit' => 6,'null' => false,'default' => '','signed' => true,'comment' => '设备类型',])
+			->addColumn('value', 'string', ['limit' => 255,'null' => false,'default' => '','signed' => true,'comment' => '唯一值',])
+			->addColumn('name', 'string', ['limit' => 255,'null' => false,'default' => '','signed' => true,'comment' => '名称',])
+			->addColumn('creator_id', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '创建人ID',])
+			->addColumn('created_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '创建时间',])
+			->addColumn('updated_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '更新时间',])
+			->addColumn('deleted_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '软删除',])
+            ->create();
+    }
+}

+ 29 - 0
catch/hydraulic/model/Maintenance.php

@@ -0,0 +1,29 @@
+<?php
+
+namespace catchAdmin\hydraulic\model;
+
+use catcher\base\CatchModel as Model;
+
+class Maintenance extends Model
+{
+    // 表名
+    public $name = 'maintenancemapper';
+    // 数据库字段映射
+    public $field = array(
+        'id',
+        // 设备类型
+        'device_type',
+        // 唯一值
+        'value',
+        // 名称
+        'name',
+        // 创建人ID
+        'creator_id',
+        // 创建时间
+        'created_at',
+        // 更新时间
+        'updated_at',
+        // 软删除
+        'deleted_at',
+    );
+}

+ 2 - 0
catch/hydraulic/route.php

@@ -18,4 +18,6 @@ $router->group(function () use ($router){
 	$router->get('get_device_mold', '\catchAdmin\hydraulic\controller\DeviceMold@getDeviceMold');
 	// wrench路由
 	$router->resource('wrench', '\catchAdmin\hydraulic\controller\Wrench');
+	// maintenance路由
+	$router->resource('maintenance', '\catchAdmin\hydraulic\controller\Maintenance');
 })->middleware('auth');