gongbin
2 years ago
1 changed files with 37 additions and 0 deletions
@ -0,0 +1,37 @@ |
|||||||
|
package com.fr.plugin.dynamic.dbconnect.bean; |
||||||
|
|
||||||
|
public class DynamicDbConnectBean { |
||||||
|
public DynamicDbConnectBean(String reportName,String role,String connectName){ |
||||||
|
this.reportName = reportName; |
||||||
|
this.role = role; |
||||||
|
this.connectName = connectName; |
||||||
|
} |
||||||
|
|
||||||
|
private String reportName; |
||||||
|
private String role; |
||||||
|
private String connectName; |
||||||
|
|
||||||
|
public String getReportName() { |
||||||
|
return reportName; |
||||||
|
} |
||||||
|
|
||||||
|
public void setReportName(String reportName) { |
||||||
|
this.reportName = reportName; |
||||||
|
} |
||||||
|
|
||||||
|
public String getRole() { |
||||||
|
return role; |
||||||
|
} |
||||||
|
|
||||||
|
public void setRole(String role) { |
||||||
|
this.role = role; |
||||||
|
} |
||||||
|
|
||||||
|
public String getConnectName() { |
||||||
|
return connectName; |
||||||
|
} |
||||||
|
|
||||||
|
public void setConnectName(String connectName) { |
||||||
|
this.connectName = connectName; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue