Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
howe committed Sep 14, 2012
1 parent 55c9f43 commit f5a0f00
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/com/esup/faka/module/StocksModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,21 @@ private String rtnNumber(String num) {
// dao2.execute(sqls);
// }

/**
* 通过订单号与支付流水号提取卡密
* @param orderNO 订单号(淘宝订单号、拍拍订单号)
* @param paymentNO 支付流水号(支付宝流水号、财付通流水号)
* @return
*/
@At("/stocks/querycardbyorder")
@Ok("json")
private Stocks queryCardByOrder(@Param("orderno") String orderNO, @Param("paymentno") String paymentNO){

Stocks stocks = new Stocks();

return stocks;
}

@At
public Object list(@Param("page") int page, @Param("rows") int rows) {
if (rows < 1)
Expand Down

0 comments on commit f5a0f00

Please sign in to comment.