Add default constructor (#11858)
This commit is contained in:
parent
0f3b42925f
commit
7b58737e22
|
|
@ -17,7 +17,9 @@
|
|||
|
||||
package org.apache.dolphinscheduler.api.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import org.apache.dolphinscheduler.dao.entity.ExecuteStatusCount;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.enums.TaskExecutionStatus;
|
||||
|
||||
|
|
@ -27,8 +29,9 @@ import java.util.Map;
|
|||
import java.util.stream.Collectors;
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class TaskCountDto {
|
||||
|
||||
/**
|
||||
* total count
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue