package com.ruoyi.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-12
|
*/
|
@TableName("zf_doctor")
|
public class ZfDoctor implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 病的类型
|
*/
|
private String type;
|
|
/**
|
* 症状
|
*/
|
private String symptom;
|
|
/**
|
* 持续时间
|
*/
|
private String duration;
|
|
/**
|
* 中医
|
*/
|
private String cMedical;
|
|
/**
|
* 西医
|
*/
|
private String wMedical;
|
|
/**
|
* 功效
|
*/
|
private String effect;
|
|
/**
|
* 适用人
|
*/
|
private String suitable;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getSymptom() {
|
return symptom;
|
}
|
|
public void setSymptom(String symptom) {
|
this.symptom = symptom;
|
}
|
|
public String getDuration() {
|
return duration;
|
}
|
|
public void setDuration(String duration) {
|
this.duration = duration;
|
}
|
|
public String getcMedical() {
|
return cMedical;
|
}
|
|
public void setcMedical(String cMedical) {
|
this.cMedical = cMedical;
|
}
|
|
public String getwMedical() {
|
return wMedical;
|
}
|
|
public void setwMedical(String wMedical) {
|
this.wMedical = wMedical;
|
}
|
|
public String getEffect() {
|
return effect;
|
}
|
|
public void setEffect(String effect) {
|
this.effect = effect;
|
}
|
|
public String getSuitable() {
|
return suitable;
|
}
|
|
public void setSuitable(String suitable) {
|
this.suitable = suitable;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
@Override
|
public String toString() {
|
return "ZfDoctor{" +
|
"id=" + id +
|
", type=" + type +
|
", symptom=" + symptom +
|
", duration=" + duration +
|
", cMedical=" + cMedical +
|
", wMedical=" + wMedical +
|
", effect=" + effect +
|
", suitable=" + suitable +
|
", remark=" + remark +
|
"}";
|
}
|
}
|