copy from smartor/src/main/java/com/smartor/domain/ServiceSubtaskVO.java
copy to smartor/src/main/java/com/smartor/domain/entity/ServiceSubtaskEntity.java
| 文件从 smartor/src/main/java/com/smartor/domain/ServiceSubtaskVO.java 复制 |
| | |
| | | package com.smartor.domain; |
| | | package com.smartor.domain.entity; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import com.smartor.domain.TaskSendTimeVO; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | * @author ruoyi |
| | | * @date 2024-02-02 |
| | | */ |
| | | @ApiModel(value = "ServiceSubtaskVO", description = "鍗曚竴闅忚浠诲姟鍏ュ弬") |
| | | |
| | | @ApiModel(value = "ServiceSubtaskEntity", description = "鍗曚竴闅忚浠诲姟鍏ュ弬") |
| | | @Data |
| | | public class ServiceSubtaskVO extends BaseEntity { |
| | | public class ServiceSubtaskEntity extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @ApiModelProperty(value = "鍒嗙粍key") |
| | | private String groupKey; |
| | | |
| | | @ApiModelProperty(value = "缁х画鏍囪瘑") |
| | | private Integer continueFlag; |
| | | |
| | | @ApiModelProperty(value = "缁х画鏃堕棿鐜板湪") |
| | | private Date continueTimeNow; |
| | | |
| | | @ApiModelProperty(value = "缁х画鍐呭") |
| | | private String continueContent; |
| | | |
| | | @ApiModelProperty(value = "缁х画娆℃暟") |
| | | private Integer continueCount; |
| | | |
| | | @ApiModelProperty(value = "缁х画鏃堕棿涓嬫") |
| | | private Date continueTimeNext; |
| | | |
| | | /** |
| | | * 鍒嗙粍code闆嗗悎 |
| | | */ |