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.
39 lines
751 B
39 lines
751 B
package com.ynxbd.common.bean.pay;
|
|
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
import java.time.LocalDateTime;
|
|
import java.util.Date;
|
|
|
|
@Setter
|
|
@Getter
|
|
@ToString(callSuper = true)
|
|
@NoArgsConstructor
|
|
public class PayCasebook extends Order{
|
|
// 病例ID
|
|
private String casebookId;
|
|
// 申请日期
|
|
private String applyTime;
|
|
// 申请人
|
|
private String applyName;
|
|
// 病例人
|
|
private String patientName;
|
|
// 证件号码
|
|
private String cardNo;
|
|
|
|
private String address;
|
|
|
|
private String getWay;
|
|
|
|
private String deptCode;
|
|
|
|
private String deptName;
|
|
|
|
private String treatNum;
|
|
|
|
private String dx;
|
|
|
|
}
|
|
|