Commit 470dd4c9 authored by caotao's avatar caotao

1.车辆管理更新车辆司机、联系电话、速度阈值不生效问题。

parent 4f7089f7
package com.yeejoin.equipmanage.common.entity; package com.yeejoin.equipmanage.common.entity;
import com.baomidou.mybatisplus.annotation.FieldStrategy;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler; import com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler;
...@@ -118,15 +119,15 @@ public class Car extends BaseEntity { ...@@ -118,15 +119,15 @@ public class Car extends BaseEntity {
private String bizOrgCode; private String bizOrgCode;
// 2023年11月6日 11点16分添加 // 2023年11月6日 11点16分添加
@ApiModelProperty(value = "司机") @ApiModelProperty(value = "司机")
@TableField("driver") @TableField(value = "driver",updateStrategy = FieldStrategy.IGNORED)
private String driver; private String driver;
// 2023年11月6日 11点16分添加 // 2023年11月6日 11点16分添加
@ApiModelProperty(value = "联系电话") @ApiModelProperty(value = "联系电话")
@TableField("phone") @TableField(value = "phone",updateStrategy = FieldStrategy.IGNORED)
private String phone; private String phone;
// 2023年11月6日 11点16分添加 // 2023年11月6日 11点16分添加
@ApiModelProperty(value = "速度阈值") @ApiModelProperty(value = "速度阈值")
@TableField("max_speed") @TableField(value = "max_speed",updateStrategy = FieldStrategy.IGNORED)
private Double maxSpeed; private Double maxSpeed;
@ApiModelProperty(value = "图片") @ApiModelProperty(value = "图片")
@TableField(exist = false) @TableField(exist = false)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment