ElmDemo/src/main/java/entities/Indent.java
2023-03-26 22:03:06 +08:00

14 lines
316 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;
//订单类
@Data
public class Indent {
private Long id;//订单ID
private indentItem indentItemID;//外键菜品ID
private Users userID;//外键下单用户ID
private Merchants merchantsID;//外键餐厅ID
private Float allPrice;//菜品总价
}