You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
553 B
29 lines
553 B
2 years ago
|
package com.ynxbd.common.bean.sms;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.Setter;
|
||
|
import lombok.ToString;
|
||
|
|
||
|
@Setter
|
||
|
@Getter
|
||
|
@ToString
|
||
|
public class SmsRegTem {
|
||
|
|
||
|
// 响应消息
|
||
|
private String message;
|
||
|
// 时间
|
||
|
private String time;
|
||
|
// 科室名
|
||
|
private String deptName;
|
||
|
// 医生名
|
||
|
private String doctorName;
|
||
|
// 地址
|
||
|
private String address;
|
||
|
// 就诊序号
|
||
|
private String seq;
|
||
|
// 医院提示
|
||
|
private String hosp_tip;
|
||
|
// 医院电话
|
||
|
private String hosp_tel;
|
||
|
}
|