1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * Copyright (c) 2018 Toby All rights reserved.
- * <p>
- * https://www.scjydz.com
- * <p>
- * 版权所有,侵权必究!
- */
- package com.wjp.modules.message.dto;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.wjp.common.utils.DateUtils;
- import com.wjp.modules.message.sms.SmsConfig;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * 短信
- *
- * @author Toby javatangbin@163.com
- */
- @Data
- @Schema(description = "短信")
- public class SysSmsDTO implements Serializable {
- @Schema(description = "id")
- private Long id;
- @Schema(description = "短信编码")
- private String smsCode;
- @Schema(description = "平台类型")
- private Integer platform;
- @Schema(description = "备注")
- private String remark;
- @Schema(description = "短信配置")
- private SmsConfig config;
- @Schema(description = "创建时间")
- @JsonFormat(pattern = DateUtils.DATE_TIME_PATTERN)
- private Date createDate;
- }
|