94 lines
1.7 KiB
Java
94 lines
1.7 KiB
Java
package cn.van.business.model;
|
||
|
||
import javax.persistence.*;
|
||
|
||
/**
|
||
* @author Leo
|
||
* @version 1.0
|
||
* @create 2024/11/7 10:58
|
||
* @description:
|
||
*/
|
||
@Entity
|
||
@Table(name = "goods_info")
|
||
public class GoodsInfoVO {
|
||
|
||
@Id
|
||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||
private Long id;
|
||
|
||
@Column(name = "owner")
|
||
private String owner;
|
||
|
||
@Column(name = "main_sku_id")
|
||
private String mainSkuId;
|
||
|
||
@Column(name = "product_id")
|
||
private String productId;
|
||
|
||
@Column(name = "image_url")
|
||
private String imageUrl;
|
||
|
||
@Column(name = "shop_name")
|
||
private String shopName;
|
||
|
||
@Column(name = "shop_id")
|
||
private String shopId;
|
||
|
||
// Getters and Setters
|
||
public Long getId() {
|
||
return id;
|
||
}
|
||
|
||
public void setId(Long id) {
|
||
this.id = id;
|
||
}
|
||
|
||
public String getOwner() {
|
||
return owner;
|
||
}
|
||
|
||
public void setOwner(String owner) {
|
||
this.owner = owner;
|
||
}
|
||
|
||
public String getMainSkuId() {
|
||
return mainSkuId;
|
||
}
|
||
|
||
public void setMainSkuId(String mainSkuId) {
|
||
this.mainSkuId = mainSkuId;
|
||
}
|
||
|
||
public String getProductId() {
|
||
return productId;
|
||
}
|
||
|
||
public void setProductId(String productId) {
|
||
this.productId = productId;
|
||
}
|
||
|
||
public String getImageUrl() {
|
||
return imageUrl;
|
||
}
|
||
|
||
public void setImageUrl(String imageUrl) {
|
||
this.imageUrl = imageUrl;
|
||
}
|
||
|
||
public String getShopName() {
|
||
return shopName;
|
||
}
|
||
|
||
public void setShopName(String shopName) {
|
||
this.shopName = shopName;
|
||
}
|
||
|
||
public String getShopId() {
|
||
return shopId;
|
||
}
|
||
|
||
public void setShopId(String shopId) {
|
||
this.shopId = shopId;
|
||
}
|
||
}
|