| 123456789101112131415161718 |
- package com.java110.front.smo.payment;
- import com.java110.core.context.IPageData;
- import org.springframework.http.ResponseEntity;
- /**
- * 统一下单接口类
- */
- public interface IToPayBackCitySMO {
- /**
- * 下单
- * @param pd
- * @return
- */
- public ResponseEntity<String> toPay(IPageData pd);
- }
|