feat: 移植工程
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.cxx.home.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.cxx.framework.data.AbstractEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@TableName("food_recipe")
|
||||
public class FoodRecipe extends AbstractEntity {
|
||||
@TableField("name")
|
||||
private String name;
|
||||
|
||||
@TableField("category")
|
||||
private String category;
|
||||
|
||||
@TableField("recommend_rate")
|
||||
private Integer recommendRate;
|
||||
|
||||
@TableField("remark")
|
||||
private String remark;
|
||||
}
|
||||
Reference in New Issue
Block a user