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

  1. package com.example.demo.domain.entity;
  2. import lombok.Data;
  3. import lombok.NoArgsConstructor;
  4. import java.io.Serializable;
  5. /**
  6. * @program: GOLD
  7. * @ClassName Goods
  8. * @description:
  9. * @author: huangqizhen
  10. * @create: 202508-21 17:03
  11. * @Version 1.0
  12. **/
  13. @Data
  14. @NoArgsConstructor
  15. public class Goods implements Serializable {
  16. private static final long serialVersionUID = 1L;
  17. private Integer id;
  18. private String goodsname;
  19. }