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

2 years ago
  1. package com.whn.hellospring.model;
  2. import lombok.*;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. import java.util.List;
  6. @Data
  7. @Builder
  8. @NoArgsConstructor
  9. @AllArgsConstructor
  10. public class CoffeeOrderDTO implements Serializable {
  11. private String customer;
  12. private String customer_id;
  13. private Long id;
  14. private Date createTime;
  15. private Date updateTime;
  16. private OrderState state;
  17. private List<CoffeeDTO> items;
  18. }