chengf
2025-08-27 074caee550216dfd4bb676677ae33cbd837c5710
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.java110.fee.bmo.feeDiscountSpec;
 
import com.java110.po.fee.FeeDiscountSpecPo;
import org.springframework.http.ResponseEntity;
 
public interface IUpdateFeeDiscountSpecBMO {
 
 
    /**
     * 修改费用折扣
     * add by wuxw
     *
     * @param feeDiscountSpecPo
     * @return
     */
    ResponseEntity<String> update(FeeDiscountSpecPo feeDiscountSpecPo);
 
 
}