创建故障实体类

pull/1/head
冷调 2024-09-17 19:58:21 +08:00
parent 6dfb5663a1
commit 21c796a9d9
1 changed files with 69 additions and 2 deletions

View File

@ -1,16 +1,83 @@
package com.muyu.breakdown.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 lombok.Data;
import lombok.EqualsAndHashCode;
/**
* @author Lenovo
* @ ToolIntelliJ IDEA
* @ AuthorCHX
* @ Date2024-09-17-15:10
* @ Version1.0
* @ Description
* @author Lenovo
*/
@EqualsAndHashCode(callSuper = true)
@Data
public class BreakDown {
@TableName("sys_car_fault")
public class BreakDown extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId(value = "id", type = IdType.AUTO)
@Excel(name = "主键")
private Long id;
/**
*
*/
@Excel(name = "故障码")
private String faultCode;
/**
*
*/
@Excel(name = "故障类型")
private String faultType;
/**
* VIN
*/
@Excel(name = "车辆VIN")
private String carVin;
/**
*
*/
@Excel(name = "故障标签")
private String faultLabel;
/**
*
*/
@Excel(name = "故障位")
private String faultBit;
/**
*
*/
@Excel(name = "故障值")
private String faultValue;
/**
*
*/
@Excel(name = "故障级别")
private String faultWarn;
/**
* Y.N.
*/
@Excel(name = "报警状态")
private String faultStatus;
/**
*
*/
@Excel(name = "故障描述信息")
private String faultDesc;
/**
* (1. 2. 3. 4.)
*/
@Excel(name = "启用状态")
private String state;
}