用SpringBoot知识 创建商品类(Stock),要求里面有如下属性:ID,商品名字,商品评价
时间: 2024-10-17 10:11:52 浏览: 20
在Spring Boot项目中,创建一个名为`Stock`的商品类(通常我们会将其放在`model`包下的`Stock.java`文件中),我们可以按照以下结构定义:
```java
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
@Entity // 注解表示这是一个JPA实体,将映射到数据库表
public class Stock {
@Id // 标记为实体的主键
@GeneratedValue(strategy = GenerationType.AUTO) // 自动分配ID,策略通常是序列
private Long id; // 商品ID
private String productName; // 商品名字
private Integer productRating; // 商品评价,假设是个整数
// getters 和 setters 方法
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getProductName() {
return productName;
}
public void setProductName(String productName) {
this.productName = productName;
}
public Integer getProductRating() {
return productRating;
}
public void setProductRating(Integer productRating) {
this.productRating = productRating;
}
}
阅读全文