23 lines
437 B
Java
23 lines
437 B
Java
package io.dataease.dto;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class ProjectDTO {
|
|
|
|
private String id;
|
|
private String name;
|
|
private String workspaceId;
|
|
private String workspaceName;
|
|
private String description;
|
|
private Long createTime;
|
|
private Long updateTime;
|
|
private String tapdId;
|
|
private String jiraKey;
|
|
private String zentaoId;
|
|
private boolean repeatable;
|
|
|
|
}
|