1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.java110.fee.bmo;
|
| import com.alibaba.fastjson.JSONObject;
| import com.java110.dto.fee.FeeAttrDto;
| import org.springframework.http.ResponseEntity;
|
| public interface IQueryFeeByAttr {
|
| /**
| * 查询费用
| * @param feeAttrDto
| * @return
| */
| ResponseEntity<String> query(FeeAttrDto feeAttrDto);
| }
|
|