copy from src/main/java/org/springblade/modules/customTask/dto/CustomTaskDTO.java
copy to src/main/java/org/springblade/modules/smsTask/dto/SmsTaskDTO.java
| File was copied from src/main/java/org/springblade/modules/customTask/dto/CustomTaskDTO.java |
| | |
| | | * this software without specific prior written permission. |
| | | * Author: Chill 庄骞 (smallchill@163.com) |
| | | */ |
| | | package org.springblade.modules.customTask.dto; |
| | | package org.springblade.modules.smsTask.dto; |
| | | |
| | | import org.springblade.modules.customTask.entity.CustomTaskEntity; |
| | | import org.springblade.modules.smsTask.entity.SmsTaskEntity; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | /** |
| | | * 自定义任务表 数据传输对象实体类 |
| | | * 短信发送任务 数据传输对象实体类 |
| | | * |
| | | * @author BladeX |
| | | * @since 2024-07-30 |
| | | * @since 2024-08-08 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class CustomTaskDTO extends CustomTaskEntity { |
| | | public class SmsTaskDTO extends SmsTaskEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | } |