mirror of http://gitlab.batiao8.com/yic/film.git
order_no
This commit is contained in:
parent
957622016a
commit
23ed28e14c
|
@ -13,7 +13,7 @@ var (
|
||||||
|
|
||||||
type Order struct {
|
type Order struct {
|
||||||
Id int64
|
Id int64
|
||||||
OrderId string
|
OrderNo string
|
||||||
StartTime string
|
StartTime string
|
||||||
StartDate string
|
StartDate string
|
||||||
TotalPrice int64
|
TotalPrice int64
|
||||||
|
|
|
@ -56,3 +56,25 @@ func (p *Processor) BidPrice(id int64, price int64) error {
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *Processor) QueryBidding() error {
|
||||||
|
reqUrl := "https://hahapiao.cn/api/Synchro/getOrderList"
|
||||||
|
|
||||||
|
header := map[string]interface{}{
|
||||||
|
"token": p.token,
|
||||||
|
}
|
||||||
|
body, err := httputil.HttpPostForm(reqUrl, header, nil)
|
||||||
|
if err != nil {
|
||||||
|
log.Error("httpPost error : %s", err.Error())
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
data, err := p.checkError(body)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
cast.ToSlice(data)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
package haha
|
||||||
|
|
||||||
|
type BidOrder struct {
|
||||||
|
OrderId int64
|
||||||
|
}
|
Loading…
Reference in New Issue