gpt4 book ai didi

java - 如何在 JPA 中映射这些实体

转载 作者:行者123 更新时间:2023-12-02 08:55:30 25 4
gpt4 key购买 nike

我有下表:

create table product (
id int primary key,
sku text unique,
descripcion text
);

create table price_list (
id int primary key,
name text not null
)

create table price_list_item (
id_price_list int,
id_product int,
price decimal(12,2)
)

所以我想将这些表映射到这些类:

public class PriceList {
private int id;
private String name;
private List<ProductPrice> prices;

.....
}

public class ProductPrice {
private int idProduct;
private String sku;
private String descripcion;
private BigDecimal price
}

但我似乎无法找到/理解如何使用 JPA 来做到这一点

最佳答案

希望这段代码有帮助。

public class PriceList {
@Id
private int id;
@Column(name="name")
private String name;
}

public class Product{
@Id
private int id;
@Column(name="sku")
private String name;
@Column(name="descripcion")
private String description;
}

prices 应该由 PriceListRepository 返回,它可以实现 JpaRepository。 PriceList是你的实体类的名称,Integer是id的类型。同样,您也可以为其他实体实现类。

关于java - 如何在 JPA 中映射这些实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60518155/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com