🎨 新增订单模块

This commit is contained in:
2025-07-19 06:18:44 +08:00
parent aac13d369c
commit 8106282c8b
2 changed files with 30 additions and 0 deletions

8
service/app/order.go Normal file
View File

@@ -0,0 +1,8 @@
package app
type OrderService struct{}
// Pay 发起支付
func (s *OrderService) Pay(orderId string, userId int64) (string, error) {
return "", nil
}