| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package com.dgtly.system.domain;
- /**
- * @description: 任务配置信息
- * @author: qxm
- * @date: 2020/10/12 20:29
- */
- public class FlowConfigInfo {
-
- //通知开发者地址
- private String noticeDeveloperUrl;
-
- //通知方式,可选择多种通知方式
- private String noticeType;
-
- //签署完成重定向地址
- private String redirectUrl;
-
- //签署平台
- private String signPlatform;
- public String getNoticeDeveloperUrl() {
- return noticeDeveloperUrl;
- }
- public void setNoticeDeveloperUrl(String noticeDeveloperUrl) {
- this.noticeDeveloperUrl = noticeDeveloperUrl;
- }
- public String getNoticeType() {
- return noticeType;
- }
- public void setNoticeType(String noticeType) {
- this.noticeType = noticeType;
- }
- public String getRedirectUrl() {
- return redirectUrl;
- }
- public void setRedirectUrl(String redirectUrl) {
- this.redirectUrl = redirectUrl;
- }
- public String getSignPlatform() {
- return signPlatform;
- }
- public void setSignPlatform(String signPlatform) {
- this.signPlatform = signPlatform;
- }
- public FlowConfigInfo(String noticeDeveloperUrl, String noticeType, String redirectUrl, String signPlatform) {
- this.noticeDeveloperUrl = noticeDeveloperUrl;
- this.noticeType = noticeType;
- this.redirectUrl = redirectUrl;
- this.signPlatform = signPlatform;
- }
- public FlowConfigInfo() {
- }
-
-
- }
|