feat:故障记录导出
parent
3b58d1e5d0
commit
b95b18fa3c
|
@ -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;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue