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_PROCESSING_DETAIL")
|
@Data
|
public class ProcessingDetail {
|
|
/**
|
* 明细id
|
*/
|
@TableId(type = IdType.ID_WORKER)
|
private Long detailId;
|
/**
|
* 加工单id
|
*/
|
private Long formId;
|
|
/**
|
* 案卷级或文件级id
|
*/
|
private Long keyId;
|
/**
|
* 件号
|
*/
|
private String itemNumber;
|
|
/**
|
* 文件名
|
*/
|
private String archivalTitle;
|
|
/**
|
* 密级
|
*/
|
private String securityClassification;
|
|
/**
|
* 涉密页码
|
*/
|
private Integer securityPageNum;
|
/**
|
* 加工类型
|
*/
|
private String processingType;
|
/**
|
* 起止页面
|
*/
|
private String pageRange;
|
|
/**
|
* 单位
|
*/
|
private String deptName;
|
|
/**
|
* 加工说明
|
*/
|
private String processingExplain;
|
|
/**
|
* 文档类型
|
*/
|
private String documentType;
|
|
/**
|
* 服务方式
|
*/
|
private String serviceType;
|
/**
|
* 电子数量
|
*/
|
private Integer electronicNum;
|
|
/**
|
* 文件大小
|
*/
|
private String fileSize;
|
|
/**
|
* 完成时间
|
*/
|
private Date completeTime;
|
/**
|
* 加工状态
|
*/
|
private Integer processingState;
|
|
/**
|
* 加工涉密页码
|
*/
|
private Integer processingSecurityPageNum;
|
|
/**
|
* 模块id
|
*/
|
private Long moduleId;
|
/**
|
* 模块名称
|
*/
|
private String moduleName;
|
/**
|
* 父模块id
|
*/
|
private Long parentModuleId;
|
/**
|
* 案卷id(案卷时和key_id一致)
|
*/
|
private Long parentKeyId;
|
/**
|
* 案卷档号(案卷时和archives_code一致)
|
*/
|
private String parentArchivalCode;
|
/**
|
* 案卷题名(案卷时和title一致)
|
*/
|
private String parentArchivalTitle;
|
}
|