FlowConfigInfo.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.dgtly.system.domain;
  2. /**
  3. * @description: 任务配置信息
  4. * @author: qxm
  5. * @date: 2020/10/12 20:29
  6. */
  7. public class FlowConfigInfo {
  8. //通知开发者地址
  9. private String noticeDeveloperUrl;
  10. //通知方式,可选择多种通知方式
  11. private String noticeType;
  12. //签署完成重定向地址
  13. private String redirectUrl;
  14. //签署平台
  15. private String signPlatform;
  16. public String getNoticeDeveloperUrl() {
  17. return noticeDeveloperUrl;
  18. }
  19. public void setNoticeDeveloperUrl(String noticeDeveloperUrl) {
  20. this.noticeDeveloperUrl = noticeDeveloperUrl;
  21. }
  22. public String getNoticeType() {
  23. return noticeType;
  24. }
  25. public void setNoticeType(String noticeType) {
  26. this.noticeType = noticeType;
  27. }
  28. public String getRedirectUrl() {
  29. return redirectUrl;
  30. }
  31. public void setRedirectUrl(String redirectUrl) {
  32. this.redirectUrl = redirectUrl;
  33. }
  34. public String getSignPlatform() {
  35. return signPlatform;
  36. }
  37. public void setSignPlatform(String signPlatform) {
  38. this.signPlatform = signPlatform;
  39. }
  40. public FlowConfigInfo(String noticeDeveloperUrl, String noticeType, String redirectUrl, String signPlatform) {
  41. this.noticeDeveloperUrl = noticeDeveloperUrl;
  42. this.noticeType = noticeType;
  43. this.redirectUrl = redirectUrl;
  44. this.signPlatform = signPlatform;
  45. }
  46. public FlowConfigInfo() {
  47. }
  48. }