You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
440 B
23 lines
440 B
package com.example.demo.domain.entity;
|
|
|
|
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @program: GOLD
|
|
* @ClassName Goods
|
|
* @description:
|
|
* @author: huangqizhen
|
|
* @create: 2025−08-21 17:03
|
|
* @Version 1.0
|
|
**/
|
|
@Data
|
|
@NoArgsConstructor
|
|
public class Goods implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
private Integer id;
|
|
private String goodsname;
|
|
}
|