| | |
| | | package com.mzl.flower.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.mzl.flower.base.BaseAutoEntity; |
| | | import com.mzl.flower.base.BaseEntity; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Accessors(chain = true) |
| | | @TableName("t_sms_task_detail") |
| | | public class SmsTaskDetailDO extends BaseEntity { |
| | | public class SmsTaskDetailDO extends BaseAutoEntity { |
| | | |
| | | |
| | | /** |
| | |
| | | */ |
| | | private String result; |
| | | |
| | | /** |
| | | * 发送短信返回结果日志 |
| | | */ |
| | | private String responseResult; |
| | | |
| | | /** |
| | | * 失败原因 |
| | | */ |
| | | private String failReason; |
| | | |
| | | |
| | | } |