5188be7221a2245ceeb7e8cc3c0fdf6345057c49
[so.git] /
1 package org.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.client.entity;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4
5 /**
6  * Created by 10112215 on 2017/9/20.
7  */
8 public class ParamEntity {
9     @JsonProperty("name")
10     private String name;
11
12     @JsonProperty("value")
13     private String value;
14
15     public String getName() {
16         return name;
17     }
18
19     public void setName(String name) {
20         this.name = name;
21     }
22
23     public String getValue() {
24         return value;
25     }
26
27     public void setValue(String value) {
28         this.value = value;
29     }
30 }