zjh
2024-06-25 d6caa33b757fcb2f32b693b5db3c0398e96194a3
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 String ghrq;
}