方剂增加药
穴位增加脉络
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
package com.peanut.modules.book.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_drug")
|
||||
public class MedicinalDrug {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 简述
|
||||
*/
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 英文名称
|
||||
*/
|
||||
private String englishName;
|
||||
|
||||
/**
|
||||
* 汉语拼音
|
||||
*/
|
||||
private String pinyinName;
|
||||
|
||||
/**
|
||||
* 药品品类
|
||||
*/
|
||||
private String kind;
|
||||
|
||||
/**
|
||||
* 处方类型
|
||||
*/
|
||||
private String prescriptionType;
|
||||
|
||||
/**
|
||||
* 医保类型
|
||||
*/
|
||||
private String insuranceType;
|
||||
|
||||
/**
|
||||
* 0中药1西药
|
||||
*/
|
||||
private int type;
|
||||
|
||||
/**
|
||||
* 详细信息
|
||||
*/
|
||||
private String information;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
package com.peanut.modules.book.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 taste;
|
||||
|
||||
/**
|
||||
* 性
|
||||
*/
|
||||
private String property;
|
||||
|
||||
/**
|
||||
* 归
|
||||
*/
|
||||
private String tropism;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private String type;
|
||||
|
||||
/**
|
||||
* 详细信息
|
||||
*/
|
||||
private String information;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
|
||||
}
|
||||
48
src/main/java/com/peanut/modules/book/entity/Meridians.java
Normal file
48
src/main/java/com/peanut/modules/book/entity/Meridians.java
Normal file
@@ -0,0 +1,48 @@
|
||||
package com.peanut.modules.book.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName("meridians")
|
||||
public class Meridians {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 图片
|
||||
*/
|
||||
private String img;
|
||||
|
||||
/**
|
||||
* 简述
|
||||
*/
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 歌
|
||||
*/
|
||||
private String song;
|
||||
|
||||
/**
|
||||
* 详细信息
|
||||
*/
|
||||
private String information;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
}
|
||||
Reference in New Issue
Block a user