feax:()删除fault模块

dev.entOperation
crj 2024-09-29 15:07:11 +08:00
parent 2d0f557398
commit 517c18f215
2 changed files with 11 additions and 3 deletions

View File

@ -3,6 +3,7 @@ package com.muyu.enterprise.domain;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.muyu.common.core.annotation.Excel;
import com.muyu.common.core.web.domain.BaseEntity; import com.muyu.common.core.web.domain.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.tags.Tag;
@ -36,6 +37,7 @@ public class SysCarFault extends BaseEntity {
* *
*/ */
@Schema(defaultValue = "车辆故障编码",type = "String",description = "车辆故障编码") @Schema(defaultValue = "车辆故障编码",type = "String",description = "车辆故障编码")
@Excel
private String faultCode; private String faultCode;
/** /**
* ID * ID
@ -51,26 +53,31 @@ public class SysCarFault extends BaseEntity {
* VIN * VIN
*/ */
@Schema(defaultValue = "故障VIN编码",type = "String",description = "故障VIN编码") @Schema(defaultValue = "故障VIN编码",type = "String",description = "故障VIN编码")
@Excel
private String carVin; private String carVin;
/** /**
* *
*/ */
@Schema(defaultValue = "车辆故障标签",type = "String",description = "车辆故障标签") @Schema(defaultValue = "车辆故障标签",type = "String",description = "车辆故障标签")
@Excel
private String faultLabel; private String faultLabel;
/** /**
* *
*/ */
@Schema(defaultValue = "车辆故障位",type = "String",description = "车辆故障位") @Schema(defaultValue = "车辆故障位",type = "String",description = "车辆故障位")
@Excel
private String faultBit; private String faultBit;
/** /**
* *
*/ */
@Schema(defaultValue = "车辆故障值",type = "String",description = "车辆故障值") @Schema(defaultValue = "车辆故障值",type = "String",description = "车辆故障值")
@Excel
private String faultValue; private String faultValue;
/** /**
* *
*/ */
@Schema(defaultValue = "故障级别",type = "String",description = "故障级别") @Schema(defaultValue = "故障级别",type = "String",description = "故障级别")
@Excel
private String faultWarn; private String faultWarn;
/** /**
* Y.N. * Y.N.
@ -81,6 +88,7 @@ public class SysCarFault extends BaseEntity {
* *
*/ */
@Schema(defaultValue = "故障描述信息",type = "String",description = "故障描述信息") @Schema(defaultValue = "故障描述信息",type = "String",description = "故障描述信息")
@Excel
private String faultDesc; private String faultDesc;
/** /**
* (1. 2. 3. 4.) * (1. 2. 3. 4.)

View File

@ -82,15 +82,15 @@ public class FaultResp {
* *
*/ */
@Schema(defaultValue = "故障规则名称",type = "String",description = "故障规则名称") @Schema(defaultValue = "故障规则名称",type = "String",description = "故障规则名称")
private String faultRuleName; public String faultRuleName;
/** /**
* *
*/ */
@Schema(defaultValue = "故障规则参数",type = "String",description = "故障规则参数") @Schema(defaultValue = "故障规则参数",type = "String",description = "故障规则参数")
private String faultRuleParameter; public String faultRuleParameter;
/** /**
* *
*/ */
@Schema(defaultValue = "故障规则描述",type = "String",description = "故障规则描述") @Schema(defaultValue = "故障规则描述",type = "String",description = "故障规则描述")
private String faultRuleDescription; public String faultRuleDescription;
} }