package com.xzx.gc.common.utils.sms; import lombok.Data; /** * @Description: 模板短信发送信息 * @author: wei * @date: 2019-04-16 22:04 */ @Data public class SendSmsRequestInfo { /*** * 用户名 */ private String username; /*** * 密钥 */ private String password; private String mobile; private String content; private String tKey; private String time; }