12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package thyyxxk.webserver.entity.medicalinsurance.inpatient;
- import lombok.Data;
- /**
- * @description: 读卡结果
- * @author: DingJie
- * @create: 2021/8/1910:17
- */
- @Data
- public class RdCrdRslt {
- /**
- * 读卡结果代码,0-成功,其他-失败
- * */
- private Integer code;
- /**
- * 读卡类别:idcard-身份证,sicard-社保卡,qrcode-电子凭证二维码
- * */
- private String type;
- /**
- * 读卡消息
- * */
- private String message;
- /**
- * 患者住院号/门诊号
- * */
- private String patNo;
- /**
- * 读卡输出(身份证、社保卡返回普通字符串,二维码返回JSON字符串)
- * */
- private Object data;
- /**
- * 读身份证、社保卡控件签名
- * */
- private String sign;
- }
|