package com.thhy.materials.modules.biz.pipeout.entity;
|
|
import lombok.Data;
|
import lombok.Getter;
|
import lombok.Setter;
|
import lombok.ToString;
|
|
import java.io.Serializable;
|
|
@Data
|
@Getter
|
@Setter
|
@ToString
|
public class TPipeOutPath implements Serializable {
|
/**
|
*
|
*/
|
private String id;
|
|
/**
|
* 出库id
|
*/
|
private String pipeOutId;
|
|
/**
|
* 图片路径
|
*/
|
private String outPath;
|
private String outPathName;
|
|
/**
|
* This field was generated by MyBatis Generator.
|
* This field corresponds to the database table t_pipe_out_path
|
*
|
* @mbg.generated Thu Jun 01 11:35:09 CST 2023
|
*/
|
private static final long serialVersionUID = 1L;
|
}
|