| | |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.fee.FeeAttrDto; |
| | | import com.java110.po.fee.FeeAttrPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryFeeAttrsCount", method = RequestMethod.POST) |
| | | int queryFeeAttrsCount(@RequestBody FeeAttrDto feeAttrDto); |
| | | |
| | | /** |
| | | * 保存费用属性 |
| | | * @param feeAttrPos |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/saveFeeAttrs", method = RequestMethod.POST) |
| | | int saveFeeAttrs(@RequestBody List<FeeAttrPo> feeAttrPos); |
| | | } |