修改知识库

master
童成 2023-10-31 21:25:21 +08:00
parent c6b08f9ebb
commit 27a38403b9
1 changed files with 57 additions and 0 deletions

View File

@ -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;
}
}