| | |
| | | package com.mzl.flower.dto.response.sms; |
| | | |
| | | import com.mzl.flower.base.AbstractTransDTO; |
| | | import com.mzl.flower.base.annotation.DictTrans; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | public class SmsPhoneResultVO { |
| | | public class SmsPhoneResultVO extends AbstractTransDTO { |
| | | |
| | | @ApiModelProperty("ID") |
| | | private Long id; |
| | |
| | | private String phone; |
| | | |
| | | @ApiModelProperty("发送结果") |
| | | @DictTrans(target = "resultStr", codeType = "SMS_SEND_RESULT") |
| | | private String result; |
| | | |
| | | private String resultStr; |
| | | |
| | | @ApiModelProperty("失败原因") |
| | | private String failReason; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | |
| | | |
| | | } |