|
|
@@ -157,9 +157,8 @@ public class StoreIn implements Serializable {
|
|
|
/**
|
|
|
* 资质证明信息集合
|
|
|
*/
|
|
|
- @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, targetEntity = Qualification.class, orphanRemoval = true)
|
|
|
- @OrderBy
|
|
|
- @JoinColumn(name = "qu_store_id")
|
|
|
+ @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, targetEntity = Qualification.class)
|
|
|
+ @JoinColumn(name = "qu_store_id", referencedColumnName = "st_uuid")
|
|
|
private Set<Qualification> qualifications = new HashSet<>();
|
|
|
|
|
|
/**
|