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_BORROW_DETAIL")
|
@Data
|
public class BorrowDetail {
|
|
/**
|
* 明细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;
|
/**
|
* 档号 ITEM_CODE
|
*/
|
private String itemCode;
|
/**
|
* 件号
|
*/
|
private String itemNumber;
|
/**
|
* 案卷题名
|
*/
|
private String fileTitle;
|
/**
|
* 文件题名
|
*/
|
private String itemTitle;
|
|
/**
|
* 借阅类型 0:成果资料,1:原始资料
|
*/
|
private Integer borrowType;
|
/**
|
* 电子
|
*/
|
private Integer electronic;
|
/**
|
* 纸质
|
*/
|
private Integer paper;
|
/**
|
* 原件借出
|
*/
|
private Integer original;
|
|
|
/**
|
* 同意与否:0不同意,1同意
|
*/
|
private Integer agree;
|
/**
|
* 创建人ID
|
*/
|
private Long createUserId;
|
/**
|
* 创建人名称
|
*/
|
private String createUserName;
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 密级
|
*/
|
private String securityClassification;
|
/**
|
* 涉密页码
|
*/
|
private String securityPageNum;
|
|
/**
|
* 是否可以借阅纸质文件 BORROW_PURPOSE
|
*/
|
private Integer paperBorrow;
|
|
}
|