|
@@ -28,8 +28,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
|
|
-import java.util.List;
|
|
|
|
|
|
|
+import java.util.*;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 类表述: 服务之前调用的接口实现类,不对外提供接口能力 只用于接口建调用
|
|
* 类表述: 服务之前调用的接口实现类,不对外提供接口能力 只用于接口建调用
|
|
@@ -52,6 +51,14 @@ public class PayFeeRuleBillV1InnerServiceSMOImpl extends BaseServiceSMO implemen
|
|
|
return saveFlag;
|
|
return saveFlag;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public int savePayFeeRuleBills(@RequestBody List<PayFeeRuleBillPo> payFeeRuleBillPos) {
|
|
|
|
|
+ Map<String, Object> info = new HashMap<>();
|
|
|
|
|
+ info.put("payFeeRuleBillPos",payFeeRuleBillPos);
|
|
|
|
|
+ int saveFlag = payFeeRuleBillV1ServiceDaoImpl.savePayFeeRuleBills(info);
|
|
|
|
|
+ return saveFlag;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
@Override
|
|
@Override
|
|
|
public int updatePayFeeRuleBill(@RequestBody PayFeeRuleBillPo payFeeRuleBillPo) {
|
|
public int updatePayFeeRuleBill(@RequestBody PayFeeRuleBillPo payFeeRuleBillPo) {
|
|
|
int saveFlag = payFeeRuleBillV1ServiceDaoImpl.updatePayFeeRuleBillInfo(BeanConvertUtil.beanCovertMap(payFeeRuleBillPo));
|
|
int saveFlag = payFeeRuleBillV1ServiceDaoImpl.updatePayFeeRuleBillInfo(BeanConvertUtil.beanCovertMap(payFeeRuleBillPo));
|