package com.thhy.mobile.modules.biz.pipecheckrecord.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
/**
|
*
|
* @author zhang_xiao_bo
|
* @since 2023-05-08 19:43:32
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class PipeCheckRecord implements Serializable {
|
|
|
/**
|
* 理由
|
*/
|
|
|
private String checkReason;
|
|
/**
|
* 1成功2存在问题3报废
|
*/
|
|
|
private Integer checkResult;
|
|
|
|
private Date checkTime;
|
|
|
|
private String checkUser;
|
|
|
@Idkey
|
private String pipeCheckId;
|
|
|
|
|
private String pipeId;
|
|
/**
|
* 备注
|
*/
|
|
|
private String remark;
|
|
private String existProblem;
|
|
private String exeProResult;
|
}
|