package com.thhy.engineering.modules.biz.device.entity;
|
|
import lombok.Data;
|
import lombok.Getter;
|
import lombok.Setter;
|
import lombok.ToString;
|
|
import java.io.Serializable;
|
|
@Data
|
@Getter
|
@Setter
|
@ToString
|
public class TBigOverhaulPath implements Serializable {
|
/**
|
* 主键
|
*/
|
private String overhaulPathId;
|
|
/**
|
* 维修id
|
*/
|
private String bigOverhaulId;
|
|
/**
|
* 文件地址
|
*/
|
private String overhaulPath;
|
|
/**
|
* This field was generated by MyBatis Generator.
|
* This field corresponds to the database table t_big_overhaul_path
|
*
|
* @mbg.generated Thu May 18 15:32:07 CST 2023
|
*/
|
private static final long serialVersionUID = 1L;
|
}
|