| | |
| | | package com.mzl.flower.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.mzl.flower.base.BaseAutoEntity; |
| | | import com.mzl.flower.base.BaseEntity; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Accessors(chain = true) |
| | | @TableName("t_sms_task") |
| | | public class SmsTaskDO extends BaseEntity { |
| | | public class SmsTaskDO extends BaseAutoEntity { |
| | | |
| | | |
| | | /** |
| | |
| | | private Long num; |
| | | |
| | | |
| | | /** |
| | | * 任务状态 |
| | | */ |
| | | private String status; |
| | | /** |
| | | * 用户ID列表 |
| | | */ |
| | | private String userIds; |
| | | /** |
| | | * 导入文件路径详情 |
| | | */ |
| | | private String fileUrlMessage; |
| | | |
| | | |
| | | } |