|
|
|
@ -30,6 +30,8 @@ public class BasicServiceImpl implements BasicService {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String setTBasic(String body) {
|
|
|
|
|
log.info("新增基础数据:{}", body);
|
|
|
|
|
|
|
|
|
|
if (Func.isEmpty(body)) {
|
|
|
|
|
return Result.failed(null,"参数为空",null,null);
|
|
|
|
|
}
|
|
|
|
@ -49,6 +51,7 @@ public class BasicServiceImpl implements BasicService {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String updateTBasic(String body) {
|
|
|
|
|
log.info("修改基础数据:{}", body);
|
|
|
|
|
if (Func.isEmpty(body)) {
|
|
|
|
|
return Result.failed(null,"参数为空",null,null);
|
|
|
|
|
}
|
|
|
|
|