package com.zbooksoft.gdmis.data.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @Description:实物利用明细
|
* @Author: zhai
|
* @Date: 2024/8/2
|
**/
|
@TableName("UTL_PHYSICAL_DETAIL")
|
@Data
|
public class PhysicalDetail {
|
|
/**
|
* 明细id
|
*/
|
@TableId(type = IdType.ID_WORKER)
|
private Long detailId;
|
/**
|
* 利用申请单id,默认0
|
*/
|
private Long formId;
|
/**
|
* 案卷级id
|
*/
|
private Long fileId;
|
/**
|
* 文件级id
|
*/
|
private Long itemId;
|
/**
|
* 档号
|
*/
|
private String archivalCode;
|
/**
|
* 件号
|
*/
|
private String itemNumber;
|
|
/**
|
* 案卷题名
|
*/
|
private String fileTitle;
|
/**
|
* 文件题名
|
*/
|
private String itemTitle;
|
/**
|
* 借阅类型 0:成果资料,1:原始资料
|
*/
|
private Integer processingType;
|
/**
|
* 观察
|
*/
|
private Integer survey;
|
/**
|
* 取样
|
*/
|
private Integer sampling;
|
|
/**
|
* 同意与否:0不同意,1同意
|
*/
|
private Integer agree;
|
|
// /**
|
// * 利用方式
|
// */
|
// private String utilizationType;
|
/**
|
* 钻孔名称
|
*/
|
private String drillingName;
|
/**
|
* 取样深度
|
*/
|
private String samplingDepth;
|
/**
|
* 创建人ID
|
*/
|
private Long createUserId;
|
/**
|
* 创建人名称
|
*/
|
private String createUserName;
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 项目名称
|
*/
|
private String projectName;
|
/**
|
* 项目编码
|
*/
|
private String projectNum;
|
|
/**
|
* 站位
|
*/
|
private String position;
|
|
/**
|
* 样品编码
|
*/
|
private String sampleNum;
|
|
/**
|
* 样品类型
|
*/
|
private String sampleType;
|
|
/**
|
* 航次
|
*/
|
private String vesselVoyage;
|
|
/**
|
* 调查区域
|
*/
|
private String surveyedArea;
|
}
|