AuditItemsDo.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.ruoyi.approvalFlow.domain;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import lombok.Data;
  4. /**
  5. * 审批流任务明细从表对象 audit_items_do
  6. *
  7. * @author nzf
  8. * @date 2022-03-23
  9. */
  10. public class AuditItemsDo {
  11. /**
  12. * 从表 id
  13. */
  14. private Long fId;
  15. /**
  16. * 父级 id
  17. */
  18. private Long fPid;
  19. /**
  20. * 活动号
  21. */
  22. private Long actId;
  23. /**
  24. * 业务 ID
  25. */
  26. private Long billId;
  27. /**
  28. * 业务编号
  29. */
  30. private String fBsno;
  31. public Long getActId() {
  32. return actId;
  33. }
  34. public void setActId(Long actId) {
  35. this.actId = actId;
  36. }
  37. public Long getBillId() {
  38. return billId;
  39. }
  40. public void setBillId(Long billId) {
  41. this.billId = billId;
  42. }
  43. public Long getfId() {
  44. return fId;
  45. }
  46. public void setfId(Long fId) {
  47. this.fId = fId;
  48. }
  49. public Long getfPid() {
  50. return fPid;
  51. }
  52. public void setfPid(Long fPid) {
  53. this.fPid = fPid;
  54. }
  55. public String getfBsno() {
  56. return fBsno;
  57. }
  58. public void setfBsno(String fBsno) {
  59. this.fBsno = fBsno;
  60. }
  61. }