| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /*
- * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * Neither the name of the dreamlu.net developer nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- * Author: Chill 庄骞 (smallchill@163.com)
- */
- package com.blade.check.entity;
- import java.time.LocalDateTime;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * 审批流记录实体类
- *
- * @author BladeX
- * @since 2021-12-08
- */
- @Data
- @ApiModel(value = "AuditProecess对象", description = "审批流记录")
- public class AuditProecess implements Serializable {
- private static final long serialVersionUID = 1L;
- private Long id;
- /**
- * 1:财务清核
- */
- @ApiModelProperty(value = "1:财务清核")
- private int actId;
- /**
- * 业务id
- */
- @ApiModelProperty(value = "业务id")
- private Long billId;
- /**
- * 单据编号
- */
- @ApiModelProperty(value = "单据编号")
- private String billNo;
- /**
- * 审核路径名
- */
- @ApiModelProperty(value = "审核路径名")
- private Long pathId;
- /**
- * 审核级次1.2.3
- */
- @ApiModelProperty(value = "审核级次1.2.3")
- private Integer levelId;
- /**
- * 请核人ID
- */
- @ApiModelProperty(value = "请核人ID")
- private Long sendUserId;
- /**
- * 请核人姓名
- */
- @ApiModelProperty(value = "请核人姓名")
- private String sendName;
- /**
- * 请核时间
- */
- @ApiModelProperty(value = "请核时间")
- private Date sendTime;
- /**
- * 请核备注
- */
- @ApiModelProperty(value = "请核备注")
- private String sendMsg;
- /**
- * 审核人ID
- */
- @ApiModelProperty(value = "审核人ID")
- private String auditUserId;
- /**
- * 审核通过时间
- */
- @ApiModelProperty(value = "审核通过时间")
- private LocalDateTime auditItem;
- /**
- * 审核时间
- */
- @ApiModelProperty(value = "审核时间")
- private LocalDateTime auditOpTime;
- /**
- * 审核意见
- */
- @ApiModelProperty(value = "审核意见")
- private String auditMsg;
- /**
- * O提交、N未知状态、S待审、B审核退回、A审核通过
- */
- @ApiModelProperty(value = "O提交、N未知状态、S待审、B审核退回、A审核通过")
- private String auditStatus;
- /**
- * 业务日期
- */
- @ApiModelProperty(value = "业务日期")
- private LocalDateTime billTime;
- /**
- * 存储对应审批字段
- */
- @ApiModelProperty(value = "存储对应审批字段")
- private String fidStatus;
- /**
- * 第几次提交审批
- */
- @ApiModelProperty(value = "第几次提交审批")
- private Integer times;
- @ApiModelProperty(value = "租户id")
- private String tenantId;
- }
|