AuditProecess.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * Neither the name of the dreamlu.net developer nor the names of its
  13. * contributors may be used to endorse or promote products derived from
  14. * this software without specific prior written permission.
  15. * Author: Chill 庄骞 (smallchill@163.com)
  16. */
  17. package com.blade.check.entity;
  18. import java.time.LocalDateTime;
  19. import java.io.Serializable;
  20. import java.util.Date;
  21. import lombok.Data;
  22. import lombok.EqualsAndHashCode;
  23. import io.swagger.annotations.ApiModel;
  24. import io.swagger.annotations.ApiModelProperty;
  25. /**
  26. * 审批流记录实体类
  27. *
  28. * @author BladeX
  29. * @since 2021-12-08
  30. */
  31. @Data
  32. @ApiModel(value = "AuditProecess对象", description = "审批流记录")
  33. public class AuditProecess implements Serializable {
  34. private static final long serialVersionUID = 1L;
  35. private Long id;
  36. /**
  37. * 1:财务清核
  38. */
  39. @ApiModelProperty(value = "1:财务清核")
  40. private int actId;
  41. /**
  42. * 业务id
  43. */
  44. @ApiModelProperty(value = "业务id")
  45. private Long billId;
  46. /**
  47. * 单据编号
  48. */
  49. @ApiModelProperty(value = "单据编号")
  50. private String billNo;
  51. /**
  52. * 审核路径名
  53. */
  54. @ApiModelProperty(value = "审核路径名")
  55. private Long pathId;
  56. /**
  57. * 审核级次1.2.3
  58. */
  59. @ApiModelProperty(value = "审核级次1.2.3")
  60. private Integer levelId;
  61. /**
  62. * 请核人ID
  63. */
  64. @ApiModelProperty(value = "请核人ID")
  65. private Long sendUserId;
  66. /**
  67. * 请核人姓名
  68. */
  69. @ApiModelProperty(value = "请核人姓名")
  70. private String sendName;
  71. /**
  72. * 请核时间
  73. */
  74. @ApiModelProperty(value = "请核时间")
  75. private Date sendTime;
  76. /**
  77. * 请核备注
  78. */
  79. @ApiModelProperty(value = "请核备注")
  80. private String sendMsg;
  81. /**
  82. * 审核人ID
  83. */
  84. @ApiModelProperty(value = "审核人ID")
  85. private String auditUserId;
  86. /**
  87. * 审核通过时间
  88. */
  89. @ApiModelProperty(value = "审核通过时间")
  90. private LocalDateTime auditItem;
  91. /**
  92. * 审核时间
  93. */
  94. @ApiModelProperty(value = "审核时间")
  95. private LocalDateTime auditOpTime;
  96. /**
  97. * 审核意见
  98. */
  99. @ApiModelProperty(value = "审核意见")
  100. private String auditMsg;
  101. /**
  102. * O提交、N未知状态、S待审、B审核退回、A审核通过
  103. */
  104. @ApiModelProperty(value = "O提交、N未知状态、S待审、B审核退回、A审核通过")
  105. private String auditStatus;
  106. /**
  107. * 业务日期
  108. */
  109. @ApiModelProperty(value = "业务日期")
  110. private LocalDateTime billTime;
  111. /**
  112. * 存储对应审批字段
  113. */
  114. @ApiModelProperty(value = "存储对应审批字段")
  115. private String fidStatus;
  116. /**
  117. * 第几次提交审批
  118. */
  119. @ApiModelProperty(value = "第几次提交审批")
  120. private Integer times;
  121. @ApiModelProperty(value = "租户id")
  122. private String tenantId;
  123. }