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

package com.whn.hellospring.model;
import lombok.*;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class CoffeeOrderDTO implements Serializable {
private String customer;
private String customer_id;
private Long id;
private Date createTime;
private Date updateTime;
private OrderState state;
private List<CoffeeDTO> items;
}