采集器版本更换
parent
e89a721ba7
commit
f5a61789c0
@ -0,0 +1,25 @@
|
|||||||
|
package com.docus.server.dto.scheduling.management.schcollector;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 采集器版本列表管理 UpdateSchCollectorVersionDTO
|
||||||
|
*
|
||||||
|
* @author AutoGenerator
|
||||||
|
* @since 2023-07-15
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value = "UpdateSchCollectorDTO", description = "采集器版本列表管理")
|
||||||
|
public class UpdateSchCollectorDTO implements Serializable {
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "采集器版本主键")
|
||||||
|
private Long collectorVersionId;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "采集器id")
|
||||||
|
private Long collectorId;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue