feax:()删除fault模块
parent
2d0f557398
commit
517c18f215
|
@ -3,6 +3,7 @@ package com.muyu.enterprise.domain;
|
|||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.muyu.common.core.annotation.Excel;
|
||||
import com.muyu.common.core.web.domain.BaseEntity;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
|
@ -36,6 +37,7 @@ public class SysCarFault extends BaseEntity {
|
|||
* 车辆故障编码
|
||||
*/
|
||||
@Schema(defaultValue = "车辆故障编码",type = "String",description = "车辆故障编码")
|
||||
@Excel
|
||||
private String faultCode;
|
||||
/**
|
||||
* 车辆故障类型ID
|
||||
|
@ -51,26 +53,31 @@ public class SysCarFault extends BaseEntity {
|
|||
* 故障VIN编码
|
||||
*/
|
||||
@Schema(defaultValue = "故障VIN编码",type = "String",description = "故障VIN编码")
|
||||
@Excel
|
||||
private String carVin;
|
||||
/**
|
||||
* 车辆故障标签
|
||||
*/
|
||||
@Schema(defaultValue = "车辆故障标签",type = "String",description = "车辆故障标签")
|
||||
@Excel
|
||||
private String faultLabel;
|
||||
/**
|
||||
* 车辆故障位
|
||||
*/
|
||||
@Schema(defaultValue = "车辆故障位",type = "String",description = "车辆故障位")
|
||||
@Excel
|
||||
private String faultBit;
|
||||
/**
|
||||
* 车辆故障值
|
||||
*/
|
||||
@Schema(defaultValue = "车辆故障值",type = "String",description = "车辆故障值")
|
||||
@Excel
|
||||
private String faultValue;
|
||||
/**
|
||||
* 故障级别
|
||||
*/
|
||||
@Schema(defaultValue = "故障级别",type = "String",description = "故障级别")
|
||||
@Excel
|
||||
private String faultWarn;
|
||||
/**
|
||||
* 报警状态(Y.是,N.否)
|
||||
|
@ -81,6 +88,7 @@ public class SysCarFault extends BaseEntity {
|
|||
* 故障描述信息
|
||||
*/
|
||||
@Schema(defaultValue = "故障描述信息",type = "String",description = "故障描述信息")
|
||||
@Excel
|
||||
private String faultDesc;
|
||||
/**
|
||||
* 启用状态(1.待处理 2.处理中 3.已处理 4.忽略)
|
||||
|
|
|
@ -82,15 +82,15 @@ public class FaultResp {
|
|||
* 故障规则名称
|
||||
*/
|
||||
@Schema(defaultValue = "故障规则名称",type = "String",description = "故障规则名称")
|
||||
private String faultRuleName;
|
||||
public String faultRuleName;
|
||||
/**
|
||||
* 故障规则参数
|
||||
*/
|
||||
@Schema(defaultValue = "故障规则参数",type = "String",description = "故障规则参数")
|
||||
private String faultRuleParameter;
|
||||
public String faultRuleParameter;
|
||||
/**
|
||||
* 故障规则描述
|
||||
*/
|
||||
@Schema(defaultValue = "故障规则描述",type = "String",description = "故障规则描述")
|
||||
private String faultRuleDescription;
|
||||
public String faultRuleDescription;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue