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.
|
package com.whn.hellospring.model;
|
|
|
|
import lombok.*;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Table;
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 菜单
|
|
*/
|
|
@Entity
|
|
@Table(name = "T_MENU")
|
|
@Data
|
|
@ToString(callSuper = true)
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
@Builder
|
|
public class MenuDO extends BaseEntity implements Serializable {
|
|
|
|
private String type;
|
|
private String coffee_name;
|
|
private String coffee_id;
|
|
private String price;
|
|
|
|
}
|