修改知识库
parent
c6b08f9ebb
commit
27a38403b9
|
@ -0,0 +1,57 @@
|
|||
package com.four.common.duck.request;
|
||||
|
||||
/**
|
||||
* @author: tongCheng
|
||||
* @Package: four-common-duck
|
||||
* @ClassName: SymptomsDrugsRequest
|
||||
* @date: 2023-10-31 21:23
|
||||
**/
|
||||
public class SymptomsDrugsRequest {
|
||||
/**
|
||||
* 常见病症+常见药品id
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 与id关联
|
||||
*/
|
||||
private Long pid;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Long getPid() {
|
||||
return pid;
|
||||
}
|
||||
|
||||
public void setPid(Long pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public SymptomsDrugsRequest() {
|
||||
}
|
||||
|
||||
public SymptomsDrugsRequest(Long id, String name, Long pid) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.pid = pid;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue