zjh
2025-02-12 95604975d26071d55e270e73784af4787b042d98
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;
}