forked from wuguolin/smartbi2
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
520 B
Java
20 lines
520 B
Java
package com.ipsos.base.domain;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class DatasetTableIncrementalConfig implements Serializable {
|
|
@ApiModelProperty("ID")
|
|
private String id;
|
|
@ApiModelProperty("表ID")
|
|
private String tableId;
|
|
@ApiModelProperty("删除增量")
|
|
private String incrementalDelete;
|
|
@ApiModelProperty("新增增量")
|
|
private String incrementalAdd;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
} |