Files
Jarvis_java/src/main/java/cn/van/business/model/GoodsInfoVO.java
雷欧(林平凡) 19f1095a7c 1
2024-11-08 09:18:27 +08:00

94 lines
1.7 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}
}