Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
byit-myth-job
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liyuan
byit-myth-job
Commits
290d6d72
Commit
290d6d72
authored
Jul 09, 2020
by
huangfusuper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
批量接口查询
parent
3df415ff
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
9 deletions
+42
-9
JobStatusDto.java
...-core/src/main/java/com/byit/dto/plugin/JobStatusDto.java
+1
-9
JobStatusResultDto.java
...src/main/java/com/byit/dto/plugin/JobStatusResultDto.java
+41
-0
No files found.
byit-myth-core/myth-dto-core/src/main/java/com/byit/dto/plugin/JobStatusDto.java
View file @
290d6d72
...
...
@@ -20,15 +20,7 @@ public class JobStatusDto implements Serializable {
/**
* 项目名称
*/
private
String
projectName
;
/**
* 环境名称
*/
private
String
devName
;
/**
* 租户编号
*/
private
String
tenant
;
private
String
workspaceName
;
/**
* 任务名称
*/
...
...
byit-myth-core/myth-dto-core/src/main/java/com/byit/dto/plugin/JobStatusResultDto.java
0 → 100644
View file @
290d6d72
package
com
.
byit
.
dto
.
plugin
;
import
com.byit.enums.ScheduleTypeEnum
;
import
lombok.AllArgsConstructor
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
java.io.Serializable
;
/**
* 任务状态结果数据载体
* @author huangfu
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public
class
JobStatusResultDto
implements
Serializable
{
private
String
jobName
;
/**
* 调度类型
*/
private
ScheduleTypeEnum
scheduleType
;
/**
* 查询时间
*/
private
Long
findDateTime
;
/**
* 开始时间
*/
private
Long
startDateTime
;
/**
* 结束时间
*/
private
Long
endTime
;
/**
* 是否在运行中
*/
private
boolean
runIng
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment