|
|
|
@ -35,14 +35,6 @@ public class MesDataMigrationCfg extends BaseBean implements Serializable {
|
|
|
|
|
@ApiParam("描述")
|
|
|
|
|
private String remark;
|
|
|
|
|
|
|
|
|
|
// @Column(name = "MIGRATION_CYCLE")
|
|
|
|
|
// @ApiParam("迁移周期")
|
|
|
|
|
// private String migrationCycle;
|
|
|
|
|
//
|
|
|
|
|
// @Column(name = "NEXT_EXECUTION_TIME")
|
|
|
|
|
// @ApiParam("下次执行时间")
|
|
|
|
|
// private String nextExecutionTime;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SRC_TABLE_NAME")
|
|
|
|
|
@ApiParam("来源表名")
|
|
|
|
|
private String srcTableName;
|
|
|
|
@ -66,7 +58,7 @@ public class MesDataMigrationCfg extends BaseBean implements Serializable {
|
|
|
|
|
//枚举:CommonEnumUtil.DATA_SOURCE_TYPE
|
|
|
|
|
@Column(name = "DATASOURCE_TYPE")
|
|
|
|
|
@ApiParam(value = "数据源类型")
|
|
|
|
|
private Integer dataSourceType;
|
|
|
|
|
private String dataSourceType;
|
|
|
|
|
|
|
|
|
|
@Column(name = "LAST_EXECUTION_TIME")
|
|
|
|
|
@ApiParam("末次迁移时间")
|
|
|
|
@ -76,10 +68,6 @@ public class MesDataMigrationCfg extends BaseBean implements Serializable {
|
|
|
|
|
@ApiParam(value = "末次迁移记录数", example = "0")
|
|
|
|
|
private Integer lastMigrationQty;
|
|
|
|
|
|
|
|
|
|
@Column(name = "ERROR_MESSAGE")
|
|
|
|
|
@ApiParam("执行错误日志")
|
|
|
|
|
private String errorMessage;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "开始时间")
|
|
|
|
@ -89,20 +77,4 @@ public class MesDataMigrationCfg extends BaseBean implements Serializable {
|
|
|
|
|
@ApiParam(value = "结束时间")
|
|
|
|
|
private String mcEndTime;
|
|
|
|
|
|
|
|
|
|
/*public MesDataMigrationCfg(String migName, String remark, String migrationCycle, String nextExecutionTime, String srcTableName, String srcQueryConditions, Integer processQty, String destTableName, Integer isPhysicalDelete, String lastExecutionTime, Integer lastMigrationQty, String errorMessage, String mcStartTime, String mcEndTime) {
|
|
|
|
|
this.migName = migName;
|
|
|
|
|
this.remark = remark;
|
|
|
|
|
this.migrationCycle = migrationCycle;
|
|
|
|
|
this.nextExecutionTime = nextExecutionTime;
|
|
|
|
|
this.srcTableName = srcTableName;
|
|
|
|
|
this.srcQueryConditions = srcQueryConditions;
|
|
|
|
|
this.processQty = processQty;
|
|
|
|
|
this.destTableName = destTableName;
|
|
|
|
|
this.isPhysicalDelete = isPhysicalDelete;
|
|
|
|
|
this.lastExecutionTime = lastExecutionTime;
|
|
|
|
|
this.lastMigrationQty = lastMigrationQty;
|
|
|
|
|
this.errorMessage = errorMessage;
|
|
|
|
|
this.mcStartTime = mcStartTime;
|
|
|
|
|
this.mcEndTime = mcEndTime;
|
|
|
|
|
}*/
|
|
|
|
|
}
|
|
|
|
|