上传设置备份

pro
1178634255 2 years ago
parent b895be051e
commit f0cd926013

@ -48,5 +48,13 @@ public class ThirdUploadSetController {
} }
return ResultVOUtils.success(); return ResultVOUtils.success();
} }
//编辑
@AuthRuleAnnotation("system/third/syncData/update")
@GetMapping("/system/third/syncData/update")
public BaseResponse update() {
SyncUploadDataSetEntity syncDataSetResponse = syncUploadDataSetService.selectSet();
return ResultVOUtils.success(syncDataSetResponse);
}
} }

@ -103,7 +103,7 @@ public class ThrSystemController {
ThrSystemEntity thrSystemEntity = thrSystemService.selectByThirdId(filterBasicThirdSysDetailRequest.getThirdSysFk()); ThrSystemEntity thrSystemEntity = thrSystemService.selectByThirdId(filterBasicThirdSysDetailRequest.getThirdSysFk());
return ResultVOUtils.success(thrSystemEntity); return ResultVOUtils.success(thrSystemEntity);
} }
//接口设置编辑
@PostMapping("/udiwms/basic/thirdsys/update") @PostMapping("/udiwms/basic/thirdsys/update")
public BaseResponse save(@RequestBody @Valid ThrSystemEntity thrSystemEntity, public BaseResponse save(@RequestBody @Valid ThrSystemEntity thrSystemEntity,
BindingResult bindingResult) { BindingResult bindingResult) {

@ -28,4 +28,8 @@ public class SyncDataBustypeEntity {
private Integer syncStatus; //同步后单据状态 private Integer syncStatus; //同步后单据状态
@TableField(value = "`syncChange`") @TableField(value = "`syncChange`")
private boolean syncChange; //同步后是否自动补单 private boolean syncChange; //同步后是否自动补单
@TableField(value = "`createTime`")
private String createTime; //创建时间
@TableField(value = "`updateTime`")
private String updateTime; //更新时间
} }

Loading…
Cancel
Save