| | |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @ClassName FloorInnerServiceSMOImpl |
| | |
| | | } |
| | | |
| | | @Override |
| | | public int savePayFeeDetailMonths(@RequestBody List<PayFeeDetailMonthPo> payFeeDetailMonthPos) { |
| | | int saveFlag = 1; |
| | | Map info = new HashMap(); |
| | | info.put("payFeeDetailMonthPos",payFeeDetailMonthPos); |
| | | payFeeDetailMonthServiceDaoImpl.savePayFeeDetailMonthInfos(info); |
| | | return saveFlag; |
| | | } |
| | | |
| | | @Override |
| | | public int updatePayFeeDetailMonth(@RequestBody PayFeeDetailMonthPo payFeeDetailMonthPo) { |
| | | int saveFlag = 1; |
| | | payFeeDetailMonthServiceDaoImpl.updatePayFeeDetailMonthInfo(BeanConvertUtil.beanCovertMap(payFeeDetailMonthPo)); |