ElmDemo/src/main/java/entities/Indent.java

19 lines
370 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package entities;
import lombok.Data;
import java.util.Date;
//订单类
@Data
public class Indent {
private Long id;//订单ID
private Float allPrice;//菜品总价
Date createdDate;//订单创建时间
private String message;//下单备注
private Users userID;//外键下单用户ID
private Merchants merchantsID;//外键餐厅ID
}