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 TBigPath implements Serializable {
|
/**
|
* 编号
|
*/
|
private String id;
|
|
/**
|
* 设备id
|
*/
|
private String bigDeviceId;
|
|
/**
|
* 1图片2文件
|
*/
|
private Integer fileType;
|
|
/**
|
* 文件地址
|
*/
|
private String filePath;
|
private String filePathName;
|
|
/**
|
* This field was generated by MyBatis Generator.
|
* This field corresponds to the database table t_big_path
|
*
|
* @mbg.generated Mon May 15 16:42:15 CST 2023
|
*/
|
private static final long serialVersionUID = 1L;
|
}
|