| 123456789101112131415161718 |
- package com.java110.fee.bmo.payFeeDetailMonth;
- import com.java110.po.payFeeDetailMonth.PayFeeDetailMonthPo;
- import org.springframework.http.ResponseEntity;
- public interface IDeletePayFeeDetailMonthBMO {
- /**
- * 修改月缴费表
- * add by wuxw
- * @param payFeeDetailMonthPo
- * @return
- */
- ResponseEntity<String> delete(PayFeeDetailMonthPo payFeeDetailMonthPo);
- }
|