敏捷工具
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.

26 lines
463 B

2 years ago
  1. package com.whn.hellospring.model;
  2. import lombok.*;
  3. import javax.persistence.Entity;
  4. import javax.persistence.Table;
  5. import java.io.Serializable;
  6. /**
  7. * 菜单
  8. */
  9. @Entity
  10. @Table(name = "T_MENU")
  11. @Data
  12. @ToString(callSuper = true)
  13. @NoArgsConstructor
  14. @AllArgsConstructor
  15. @Builder
  16. public class MenuDO extends BaseEntity implements Serializable {
  17. private String type;
  18. private String coffee_name;
  19. private String coffee_id;
  20. private String price;
  21. }