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