cloud-etl-engine/cloud-etl-common/src/main/java/com/muyu/req/EngineVersionSaveReq.java

76 lines
1.1 KiB
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 com.muyu.req;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @Authorqdm
* @Packagecom.muyu.req
* @Projectcloud-etl-engine
* @nameEngineVersionSaveReq
*/
@Data
@SuperBuilder
@NoArgsConstructor
@AllArgsConstructor
public class EngineVersionSaveReq {
private static final long serialVersionUID = 1L;
/**
* 编号
*/
private Long id;
/**
* 版本类名
*/
private String versionClass;
/**
* 版本名称
*/
private String name;
/**
* 版本编码
*/
private String versionCode;
/**
* 是否激活
*/
private String isActivate;
/**
* 版本状态
*/
private Integer status;
/**
* 版本测试状态
*/
private Integer testStatus;
/**
* 规则内容
*/
private String ruleContent;
/**
* 引擎维护编号
*/
private Long engineMaintenanceId;
/**
* 描述
*/
private String description;
/**
* 描述
*/
private String remark;
}