邱宇豪
2023-11-01 21db563b4f218e04cdf07ee442af76d929e8da3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
}