Blame view

java110-bean/src/main/java/com/java110/dto/system/ServiceBusiness.java 1.79 KB
88e030b7   王彪总   init project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
  package com.java110.dto.system;
  
  import java.io.Serializable;
  
  /**
   * @author wux
   * @create 2019-02-05 下午10:22
   * @desc 服务业务类
   **/
  public class ServiceBusiness implements Serializable {
  
      private long serviceBusinessId;
  
      /**
       * 业务类型
       */
      private  String businessTypeCd;
  
      /**
       * 调用类型 1 http-post(微服务内应用) 2 webservice 3 kafka 4 http-post(微服务之外应用)
       */
      private String invokeType;
  
      /**
       * 同步时的url地址 invokeType  3 时写kafka topic
       */
      private String url;
  
      private String messageTopic;
  
  
      private int timeout;
  
      private int retryCount;
  
  
      public long getServiceBusinessId() {
          return serviceBusinessId;
      }
  
      public void setServiceBusinessId(long serviceBusinessId) {
          this.serviceBusinessId = serviceBusinessId;
      }
  
      public String getBusinessTypeCd() {
          return businessTypeCd;
      }
  
      public void setBusinessTypeCd(String businessTypeCd) {
          this.businessTypeCd = businessTypeCd;
      }
  
      public String getInvokeType() {
          return invokeType;
      }
  
      public void setInvokeType(String invokeType) {
          this.invokeType = invokeType;
      }
  
      public String getUrl() {
          return url;
      }
  
      public void setUrl(String url) {
          this.url = url;
      }
  
      public String getMessageTopic() {
          return messageTopic;
      }
  
      public void setMessageTopic(String messageTopic) {
          this.messageTopic = messageTopic;
      }
  
      public int getTimeout() {
          return timeout;
      }
  
      public void setTimeout(int timeout) {
          this.timeout = timeout;
      }
  
      public int getRetryCount() {
          return retryCount;
      }
  
      public void setRetryCount(int retryCount) {
          this.retryCount = retryCount;
      }
  }