You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
438 B
Java
21 lines
438 B
Java
package com.glxp.api.req.basic;
|
|
|
|
import com.glxp.api.util.page.ListPageRequest;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class GetSickPrescribeRequest extends ListPageRequest {
|
|
|
|
private String code;
|
|
private String sickName;
|
|
private String sickCode;
|
|
private String idNum;
|
|
private String phone;
|
|
private String searchTime;
|
|
private String thirdSys;
|
|
/**
|
|
* 住院号(必传)
|
|
*/
|
|
private String adNum;
|
|
}
|