feat:故障记录导出

master
袁子龙 2024-09-25 22:34:02 +08:00 committed by Liu Wu
parent bf6cbc41a2
commit 7336085f6b
1 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,7 @@ 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.*;
import lombok.experimental.SuperBuilder;
@ -28,19 +29,26 @@ public class SysCarFaultLog extends BaseEntity {
/** 参数主键 */
@TableId( type = IdType.AUTO)
private Long id;
/** 故障码编码 */
@Excel(name = "故障码编码")
private Integer sysCarFaultId;
/**记录时间*/
@Excel(name = "记录时间")
private Date createTime;
/** 结束时间*/
@Excel(name = "结束时间")
private Date updateTime;
/** VIN码 */
@Excel(name = "VIN码")
private String vin;
/** 处理状态 1-解决 2-处理中 3-忽略 */
@Excel(name = "处理状态 1-解决 2-处理中 3-忽略")
private Integer status;