package com.thhy.secure.modules.biz.inspect.entity;
|
|
import lombok.Data;
|
import lombok.Getter;
|
import lombok.Setter;
|
import lombok.ToString;
|
|
import java.io.Serializable;
|
|
@Data
|
@Getter
|
@Setter
|
@ToString
|
public class TSecureInspectPath implements Serializable {
|
/**
|
* id
|
*/
|
private String inspectPathId;
|
|
/**
|
* 安全检查id
|
*/
|
private String secureInspectId;
|
|
/**
|
* 图片地址
|
*/
|
private String imgPath;
|
//图片名称
|
private String imgPathName;
|
|
/**
|
* 1检查前2整改后图片
|
*/
|
private Integer isType;
|
|
/**
|
* This field was generated by MyBatis Generator.
|
* This field corresponds to the database table t_secure_inspect_path
|
*
|
* @mbg.generated Fri Jun 02 13:15:40 CST 2023
|
*/
|
private static final long serialVersionUID = 1L;
|
}
|