24 lines
325 B
Java
24 lines
325 B
Java
package com.ai.model;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class Product {
|
|
|
|
private Long spuId;
|
|
|
|
private String spuName;
|
|
|
|
private String description;
|
|
|
|
private String type;
|
|
|
|
public Product() {
|
|
}
|
|
|
|
public Product(Long spuId, String type) {
|
|
this.spuId = spuId;
|
|
this.type = type;
|
|
}
|
|
}
|