Table of Contents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* 取得含有費用調整order集合. | |
* | |
* @param string $orderNo | |
* | |
* @return AdjustmentOrderCollection | |
*/ | |
public function fetchOrders($orderNo = null) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redis-cli -p 6380 --scan --pattern "AUTH:*" | xargs redis-cli -p 6380 del |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
func main() { | |
var a, b, c, d float64 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tclient | |
import ( | |
"bytes" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
) | |
var unexpectRoundTrip = func(req *http.Request) *http.Response { |