我有实体:
@Entity
@Table(schema="", name="PERSON")
public class Person {
List<PaymentType> paymentTypesList;
//some other fields
//getters and setters and other logic
}
并且我已承诺支付:
public enum PaymentType {
FIXED, CO_FINANCED, DETERMINED;
}
如何坚持个人及其遗体清单(在这份清单中,我必须列出数量可变的遗体,其中可能包括其中之一,或两个或全部)。
实体使用Pangres,使用JPA通知创建,使用Hibernate管理。