zjh
2024-05-28 c9ab52e29d8f399b90017dd3bec22106445f1491
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ltkj.hosp.hisDto;
 
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class OutpinregapplyDto {
 
    private String pationid;
    private String hisRegistrationId;
    private String sqysbm;
    private String mzksbm;
    private String czybm;
    private String sfjz;
    private String ghzlbm;
    private String ywckbm;
    private String sflstd;
    @JsonFormat(pattern = "yyyy-mm-dd")
    private Date ghrq;
}