AuditPathsActs.java 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 com.baomidou.mybatisplus.annotation.IdType;
  19. import com.baomidou.mybatisplus.annotation.TableId;
  20. import java.io.Serializable;
  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-07
  30. */
  31. @Data
  32. @ApiModel(value = "AuditPathsActs对象", description = "审批流配置明细表")
  33. public class AuditPathsActs implements Serializable {
  34. private static final long serialVersionUID = 1L;
  35. @TableId(value = "id", type = IdType.AUTO)
  36. private Long id;
  37. /**
  38. * 承包单位id
  39. */
  40. @ApiModelProperty(value = "承包单位id")
  41. private Integer branchId;
  42. /**
  43. * 活动号
  44. */
  45. @ApiModelProperty(value = "1:代表财务清核 ")
  46. private int actId;
  47. /**
  48. * 审核条件(O是正常审批,I非正常审批)
  49. */
  50. @ApiModelProperty(value = "审核条件(O是正常审批,I非正常审批)")
  51. private String reviewConditions;
  52. /**
  53. * 审核路径Id
  54. */
  55. @ApiModelProperty(value = "审核路径Id")
  56. private Long pathId;
  57. /**
  58. * 存储对应审批字段
  59. */
  60. @ApiModelProperty(value = "存储对应审批字段")
  61. private String fidStatus;
  62. @ApiModelProperty(value = "活动名")
  63. private String actName;
  64. @ApiModelProperty(value = "租户id")
  65. private String tenantId;
  66. }