chore:修改表数据

dev
袁子龙 2024-09-21 20:31:23 +08:00
parent bf235658fb
commit 737d6bffaa
3 changed files with 2 additions and 33 deletions

View File

@ -50,9 +50,7 @@ public class SysCarFault extends BaseEntity{
@Excel(name = "故障标签") @Excel(name = "故障标签")
private String faultLabel; private String faultLabel;
/** 故障组 */
@Excel(name = "故障组")
private String faultGroup;
/** 故障位 */ /** 故障位 */
@Excel(name = "故障位") @Excel(name = "故障位")
@ -97,7 +95,6 @@ public class SysCarFault extends BaseEntity{
.append("typeId", getTypeId()) .append("typeId", getTypeId())
.append("carVin", getCarVin()) .append("carVin", getCarVin())
.append("faultLabel", getFaultLabel()) .append("faultLabel", getFaultLabel())
.append("faultGroup", getFaultGroup())
.append("faultBit", getFaultBit()) .append("faultBit", getFaultBit())
.append("faultValue", getFaultValue()) .append("faultValue", getFaultValue())
.append("faultRank", getFaultRank()) .append("faultRank", getFaultRank())

View File

@ -1,24 +0,0 @@
package com.muyu.breakdown.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.common.core.web.domain.BaseEntity;
import lombok.*;
import lombok.experimental.SuperBuilder;
/**
* @ClassDescription:
* @JdkVersion: 1.8
* @Author: YZL
* @Created: 2024/9/20 11:34
*/
@Data
@Setter
@Getter
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
@TableName("sys_car_fault_type")
public class SysCarFaultType {
private Long faultTypeId;
private String faultTypeName;
}

View File

@ -11,7 +11,6 @@
<result property="typeId" column="type_id" /> <result property="typeId" column="type_id" />
<result property="carVin" column="car_vin" /> <result property="carVin" column="car_vin" />
<result property="faultLabel" column="fault_label" /> <result property="faultLabel" column="fault_label" />
<result property="faultGroup" column="fault_group" />
<result property="faultBit" column="fault_bit" /> <result property="faultBit" column="fault_bit" />
<result property="faultValue" column="fault_value" /> <result property="faultValue" column="fault_value" />
<result property="faultRank" column="fault_rank" /> <result property="faultRank" column="fault_rank" />
@ -28,7 +27,7 @@
</resultMap> </resultMap>
<sql id="selectSysCarFaultVo"> <sql id="selectSysCarFaultVo">
select id, fault_code, fault_name, type_id, car_vin, fault_label, fault_group, fault_bit, fault_value, fault_rank, fault_desc, fault_min_threshold, fault_max_threshold, status, warn_status, remark, create_by, create_time, update_by, update_time from sys_car_fault select id, fault_code, fault_name, type_id, car_vin, fault_label, fault_bit, fault_value, fault_rank, fault_desc, fault_min_threshold, fault_max_threshold, status, warn_status, remark, create_by, create_time, update_by, update_time from sys_car_fault
</sql> </sql>
<select id="selectSysCarFaultList" parameterType="com.muyu.breakdown.domain.SysCarFault" resultMap="SysCarFaultResult"> <select id="selectSysCarFaultList" parameterType="com.muyu.breakdown.domain.SysCarFault" resultMap="SysCarFaultResult">
@ -53,7 +52,6 @@
<if test="typeId != null">type_id,</if> <if test="typeId != null">type_id,</if>
<if test="carVin != null">car_vin,</if> <if test="carVin != null">car_vin,</if>
<if test="faultLabel != null">fault_label,</if> <if test="faultLabel != null">fault_label,</if>
<if test="faultGroup != null">fault_group,</if>
<if test="faultBit != null">fault_bit,</if> <if test="faultBit != null">fault_bit,</if>
<if test="faultValue != null">fault_value,</if> <if test="faultValue != null">fault_value,</if>
<if test="faultRank != null">fault_rank,</if> <if test="faultRank != null">fault_rank,</if>
@ -74,7 +72,6 @@
<if test="typeId != null">#{typeId},</if> <if test="typeId != null">#{typeId},</if>
<if test="carVin != null">#{carVin},</if> <if test="carVin != null">#{carVin},</if>
<if test="faultLabel != null">#{faultLabel},</if> <if test="faultLabel != null">#{faultLabel},</if>
<if test="faultGroup != null">#{faultGroup},</if>
<if test="faultBit != null">#{faultBit},</if> <if test="faultBit != null">#{faultBit},</if>
<if test="faultValue != null">#{faultValue},</if> <if test="faultValue != null">#{faultValue},</if>
<if test="faultRank != null">#{faultRank},</if> <if test="faultRank != null">#{faultRank},</if>
@ -99,7 +96,6 @@
<if test="typeId != null">type_id = #{typeId},</if> <if test="typeId != null">type_id = #{typeId},</if>
<if test="carVin != null">car_vin = #{carVin},</if> <if test="carVin != null">car_vin = #{carVin},</if>
<if test="faultLabel != null">fault_label = #{faultLabel},</if> <if test="faultLabel != null">fault_label = #{faultLabel},</if>
<if test="faultGroup != null">fault_group = #{faultGroup},</if>
<if test="faultBit != null">fault_bit = #{faultBit},</if> <if test="faultBit != null">fault_bit = #{faultBit},</if>
<if test="faultValue != null">fault_value = #{faultValue},</if> <if test="faultValue != null">fault_value = #{faultValue},</if>
<if test="faultRank != null">fault_rank = #{faultRank},</if> <if test="faultRank != null">fault_rank = #{faultRank},</if>