@OneToMany(fetch = FetchType.EAGER, targetEntity = DocConstraint.class, cascade={CascadeType.REMOVE}, mappedBy = "docid")
 public List<DocConstraint> getConstraintList() {
  return constraintList;
 }
 public void setConstraintList(List<DocConstraint> constraintList) {
  this.constraintList = constraintList;
 }

-------------------------------------------------------------

 @ManyToOne  

@JoinColumn(name = "FAPPPERSON", nullable = true, insertable = true, updatable = true)  

public Access getFappperson() {   return this.fappperson;  }

 public void setFappperson(Access value) {   this.fappperson = value;  }

 

相关文章:

  • 2022-12-23
  • 2021-09-26
  • 2022-12-23
  • 2022-12-23
  • 2021-10-20
  • 2021-12-06
猜你喜欢
  • 2021-12-24
  • 2022-12-23
  • 2018-04-16
  • 2021-11-21
  • 2022-12-23
  • 2022-12-23
  • 2022-01-04
相关资源
相似解决方案