srt_cloud/srt-cloud-data-governance/src/main/java/net/srt/entity/MetadataCollectQuery.java

23 lines
534 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package net.srt.entity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import net.srt.framework.common.query.Query;
@Data
@EqualsAndHashCode(callSuper = false)
@Schema(description = "数据治理-元数据采集查询")
public class MetadataCollectQuery extends Query {
private String name;
/**
* 入库策略0-全量1-增量
*/
private Integer strategy;
/**
* 任务类型 1一次性 2.周期性
*/
private Integer taskType;
}