|
|
@@ -42,8 +42,15 @@ public class CorpRiskInfo implements Serializable {
|
|
|
@JoinColumn(name = "details_id")
|
|
|
private Details details;
|
|
|
|
|
|
- public static long getSerialVersionUID() {
|
|
|
- return serialVersionUID;
|
|
|
+ @OneToOne(cascade = CascadeType.PERSIST)
|
|
|
+ private EnRiskInfoReport enRiskInfoReport;
|
|
|
+
|
|
|
+ public EnRiskInfoReport getEnRiskInfoReport() {
|
|
|
+ return enRiskInfoReport;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEnRiskInfoReport(EnRiskInfoReport enRiskInfoReport) {
|
|
|
+ this.enRiskInfoReport = enRiskInfoReport;
|
|
|
}
|
|
|
|
|
|
public Long getId() {
|