9 lines
154 B
Go
9 lines
154 B
Go
package app
|
|
|
|
type OrderService struct{}
|
|
|
|
// Pay 发起支付
|
|
func (s *OrderService) Pay(orderId string, userId int64) (string, error) {
|
|
return "", nil
|
|
}
|