This commit is contained in:
wangjinlei
2024-03-15 10:19:03 +08:00
parent 0c740d33a0
commit 3cef570c97
388 changed files with 657 additions and 783 deletions

View File

@@ -0,0 +1,84 @@
package com.peanut.modules.common.entity;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName("medicinal_materials")
public class MedicinalMaterials {
private static final long serialVersionUID = 1L;
@TableId
private Integer id;
/**
* 名称
*/
private String name;
/**
* 图片
*/
private String img;
/**
* 简述
*/
private String description;
/**
* 拉丁名
*/
private String latinname;
/**
* 别名
*/
private String othername;
/**
* 功效
*/
private String effect;
/**
* 味
*/
private String taste;
/**
* 性
*/
private String property;
/**
* 归
*/
private String tropism;
/**
* 类型
*/
private String type;
/**
* 详细信息
*/
private String information;
/**
* 排序
*/
private Integer sort;
/**
* 点击量
*/
private Integer hits;
@TableLogic
private Integer delFlag;
}