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;
|
import lombok.experimental.Accessors;
|
|
/**
|
* @author @TaoJie
|
* @since 2024-12-25
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@Accessors(chain = true)
|
@TableName("t_sms_task_detail")
|
public class SmsTaskDetailDO extends BaseAutoEntity {
|
|
|
/**
|
* 短信任务表ID
|
*/
|
private Long smsTaskId;
|
|
/**
|
* 短信模板表ID
|
*/
|
private Long smsTemplateId;
|
|
/**
|
* 接收号码
|
*/
|
private String phone;
|
|
/**
|
* 发送结果
|
*/
|
private String result;
|
|
/**
|
* 发送短信返回结果日志
|
*/
|
private String responseResult;
|
|
/**
|
* 失败原因
|
*/
|
private String failReason;
|
|
|
}
|