1234567891011121314151617181920212223242526272829 |
- package com.diagbot.vo;
- import io.swagger.annotations.ApiModel;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * @Description:
- * @author: rengb
- * @time: 2018/11/19 18:58
- */
- @ApiModel(value="患者登录接口传参")
- @Getter
- @Setter
- public class SignInVO {
-
- /**
- * 患者信息类型,101-身份证、102-病历号、103-手机号、104-市民卡卡号
- */
- private String patientInfoType;
-
- /**
- * 患者信息
- */
- private String patientInfo;
-
-
- }
|