You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
665 B
30 lines
665 B
|
1 year ago
|
package com.ynxbd.common.bean;
|
||
|
|
|
||
|
|
import lombok.Getter;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
import lombok.Setter;
|
||
|
|
import lombok.ToString;
|
||
|
|
|
||
|
|
@Setter
|
||
|
|
@Getter
|
||
|
|
@ToString
|
||
|
|
@NoArgsConstructor
|
||
|
|
public class RegSign {
|
||
|
|
private String treatNum;
|
||
|
|
private String patientId;
|
||
|
|
private String patientName;
|
||
|
|
private String deptCode;
|
||
|
|
private String deptName;
|
||
|
|
private String doctCode;
|
||
|
|
private String doctName;
|
||
|
|
|
||
|
|
// 号源日期
|
||
|
|
private String scheduleDate;
|
||
|
|
private String begTime;
|
||
|
|
private String endTime;
|
||
|
|
// His挂号日期
|
||
|
|
private String regDateTime;
|
||
|
|
// His挂号预约日期(预约挂号才有)
|
||
|
|
private String reservationDate;
|
||
|
|
}
|