AuditItemsDo.java 1.1 KB

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