修改项目module
This commit is contained in:
parent
c57b4eaa54
commit
89f1c7895a
|
@ -3,7 +3,7 @@ package bannerlistcache
|
||||||
import (
|
import (
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"qteam/app/caches"
|
"PaymentCenter/app/caches"
|
||||||
|
|
||||||
"github.com/qit-team/snow-core/cache"
|
"github.com/qit-team/snow-core/cache"
|
||||||
)
|
)
|
||||||
|
@ -21,7 +21,7 @@ type bannerListCache struct {
|
||||||
cache.BaseCache
|
cache.BaseCache
|
||||||
}
|
}
|
||||||
|
|
||||||
//单例模式
|
// 单例模式
|
||||||
func GetInstance() *bannerListCache {
|
func GetInstance() *bannerListCache {
|
||||||
once.Do(func() {
|
once.Do(func() {
|
||||||
instance = new(bannerListCache)
|
instance = new(bannerListCache)
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"qteam/config"
|
"PaymentCenter/config"
|
||||||
|
|
||||||
"github.com/qit-team/snow-core/cache"
|
"github.com/qit-team/snow-core/cache"
|
||||||
_ "github.com/qit-team/snow-core/cache/rediscache"
|
_ "github.com/qit-team/snow-core/cache/rediscache"
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
package controllers
|
package controllers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/utils"
|
||||||
|
"PaymentCenter/config"
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
|
@ -13,10 +15,8 @@ import (
|
||||||
zh_translations "gopkg.in/go-playground/validator.v9/translations/zh"
|
zh_translations "gopkg.in/go-playground/validator.v9/translations/zh"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
"qteam/app/utils"
|
|
||||||
"qteam/config"
|
|
||||||
|
|
||||||
"qteam/app/constants/errorcode"
|
"PaymentCenter/app/constants/errorcode"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
)
|
)
|
||||||
|
|
|
@ -3,7 +3,7 @@ package metric
|
||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"qteam/app/utils/metric"
|
"PaymentCenter/app/utils/metric"
|
||||||
|
|
||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
package middlewares
|
package middlewares
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/constants/common"
|
||||||
|
"PaymentCenter/app/constants/errorcode"
|
||||||
|
"PaymentCenter/app/http/controllers"
|
||||||
|
"PaymentCenter/app/http/requestmapping"
|
||||||
|
"PaymentCenter/app/utils"
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"github.com/qit-team/snow-core/redis"
|
"github.com/qit-team/snow-core/redis"
|
||||||
"qteam/app/constants/common"
|
|
||||||
"qteam/app/constants/errorcode"
|
|
||||||
"qteam/app/http/controllers"
|
|
||||||
"qteam/app/http/requestmapping"
|
|
||||||
"qteam/app/utils"
|
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ package middlewares
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"qteam/app/http/metric"
|
"PaymentCenter/app/http/metric"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
)
|
)
|
||||||
|
|
|
@ -6,8 +6,8 @@ import (
|
||||||
"net/http/httputil"
|
"net/http/httputil"
|
||||||
"runtime/debug"
|
"runtime/debug"
|
||||||
|
|
||||||
"qteam/app/constants/logtype"
|
"PaymentCenter/app/constants/logtype"
|
||||||
"qteam/config"
|
"PaymentCenter/config"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"github.com/qit-team/snow-core/log/logger"
|
"github.com/qit-team/snow-core/log/logger"
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
package middlewares
|
package middlewares
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/http/trace"
|
||||||
|
"PaymentCenter/app/utils"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"qteam/app/http/trace"
|
|
||||||
"qteam/app/utils"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
package routes
|
package routes
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/http/controllers"
|
||||||
|
"PaymentCenter/app/http/middlewares"
|
||||||
|
"PaymentCenter/app/http/trace"
|
||||||
|
"PaymentCenter/app/utils"
|
||||||
|
"PaymentCenter/config"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"github.com/qit-team/snow-core/http/middleware"
|
"github.com/qit-team/snow-core/http/middleware"
|
||||||
"qteam/app/http/controllers"
|
|
||||||
"qteam/app/http/middlewares"
|
|
||||||
"qteam/app/http/trace"
|
|
||||||
"qteam/app/utils"
|
|
||||||
"qteam/config"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func RegisterAdminRoute(router *gin.Engine) {
|
func RegisterAdminRoute(router *gin.Engine) {
|
||||||
|
|
|
@ -4,11 +4,11 @@ package routes
|
||||||
* 配置路由
|
* 配置路由
|
||||||
*/
|
*/
|
||||||
import (
|
import (
|
||||||
"qteam/app/http/controllers"
|
"PaymentCenter/app/http/controllers"
|
||||||
"qteam/app/http/middlewares"
|
"PaymentCenter/app/http/middlewares"
|
||||||
"qteam/app/http/trace"
|
"PaymentCenter/app/http/trace"
|
||||||
"qteam/app/utils/metric"
|
"PaymentCenter/app/utils/metric"
|
||||||
"qteam/config"
|
"PaymentCenter/config"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"github.com/qit-team/snow-core/http/middleware"
|
"github.com/qit-team/snow-core/http/middleware"
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
package trace
|
package trace
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/config"
|
||||||
"github.com/openzipkin/zipkin-go"
|
"github.com/openzipkin/zipkin-go"
|
||||||
zkHttp "github.com/openzipkin/zipkin-go/reporter/http"
|
zkHttp "github.com/openzipkin/zipkin-go/reporter/http"
|
||||||
"log"
|
"log"
|
||||||
"qteam/config"
|
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,8 @@ package jobs
|
||||||
import (
|
import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"qteam/app/jobs/basejob"
|
"PaymentCenter/app/jobs/basejob"
|
||||||
"qteam/config"
|
"PaymentCenter/config"
|
||||||
|
|
||||||
"github.com/qit-team/snow-core/log/logger"
|
"github.com/qit-team/snow-core/log/logger"
|
||||||
"github.com/qit-team/snow-core/queue"
|
"github.com/qit-team/snow-core/queue"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package mq
|
package mq
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"qteam/app/utils/mq"
|
"PaymentCenter/app/utils/mq"
|
||||||
)
|
)
|
||||||
|
|
||||||
func startQunue(name string, method interface{}, mqTp string, tp int, exhange string) {
|
func startQunue(name string, method interface{}, mqTp string, tp int, exhange string) {
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
package market
|
package market
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/config"
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
"qteam/config"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type MarketClient struct {
|
type MarketClient struct {
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
package market
|
package market
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/utils/encrypt"
|
||||||
|
"PaymentCenter/config"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"qteam/app/utils/encrypt"
|
|
||||||
"qteam/config"
|
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
package market
|
package market
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/utils"
|
||||||
|
"PaymentCenter/config"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/qit-team/snow-core/kernel/server"
|
"github.com/qit-team/snow-core/kernel/server"
|
||||||
"os"
|
"os"
|
||||||
"qteam/app/utils"
|
|
||||||
"qteam/config"
|
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
package openapiService
|
package openapiService
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/models/orderdetailsmodel"
|
||||||
|
"PaymentCenter/app/models/ordersmodel"
|
||||||
|
"PaymentCenter/app/models/usercouponmodel"
|
||||||
|
"PaymentCenter/app/utils"
|
||||||
|
"PaymentCenter/config"
|
||||||
"context"
|
"context"
|
||||||
"crypto/aes"
|
"crypto/aes"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
"gitee.com/chengdu_blue_brothers/openapi-go-sdk/api"
|
"gitee.com/chengdu_blue_brothers/openapi-go-sdk/api"
|
||||||
"gitee.com/chengdu_blue_brothers/openapi-go-sdk/notify"
|
"gitee.com/chengdu_blue_brothers/openapi-go-sdk/notify"
|
||||||
"net/http"
|
"net/http"
|
||||||
"qteam/app/models/orderdetailsmodel"
|
|
||||||
"qteam/app/models/ordersmodel"
|
|
||||||
"qteam/app/models/usercouponmodel"
|
|
||||||
"qteam/app/utils"
|
|
||||||
"qteam/config"
|
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package httpclient
|
package httpclient
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/utils"
|
||||||
"fmt"
|
"fmt"
|
||||||
"qteam/app/utils"
|
|
||||||
|
|
||||||
"github.com/valyala/fasthttp"
|
"github.com/valyala/fasthttp"
|
||||||
"time"
|
"time"
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package mq
|
package mq
|
||||||
|
|
||||||
import (
|
import (
|
||||||
common3 "qteam/app/constants/common"
|
common3 "PaymentCenter/app/constants/common"
|
||||||
mq "qteam/app/utils/mq/mqs"
|
mq "PaymentCenter/app/utils/mq/mqs"
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
package mq
|
package mq
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/utils"
|
||||||
|
"PaymentCenter/config"
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/Shopify/sarama"
|
"github.com/Shopify/sarama"
|
||||||
"github.com/qit-team/snow-core/redis"
|
"github.com/qit-team/snow-core/redis"
|
||||||
"qteam/app/utils"
|
|
||||||
"qteam/config"
|
|
||||||
|
|
||||||
"strconv"
|
"strconv"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
package mq
|
package mq
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/utils"
|
||||||
|
"PaymentCenter/config"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/nats-io/nats.go"
|
"github.com/nats-io/nats.go"
|
||||||
_ "github.com/nats-io/nats.go"
|
_ "github.com/nats-io/nats.go"
|
||||||
"github.com/streadway/amqp"
|
"github.com/streadway/amqp"
|
||||||
"qteam/app/utils"
|
|
||||||
"qteam/config"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type NatsMq struct {
|
type NatsMq struct {
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/config"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/nacos-group/nacos-sdk-go/v2/clients"
|
"github.com/nacos-group/nacos-sdk-go/v2/clients"
|
||||||
"github.com/nacos-group/nacos-sdk-go/v2/clients/naming_client"
|
"github.com/nacos-group/nacos-sdk-go/v2/clients/naming_client"
|
||||||
"github.com/nacos-group/nacos-sdk-go/v2/common/constant"
|
"github.com/nacos-group/nacos-sdk-go/v2/common/constant"
|
||||||
"github.com/nacos-group/nacos-sdk-go/v2/vo"
|
"github.com/nacos-group/nacos-sdk-go/v2/vo"
|
||||||
"qteam/config"
|
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
package sm2
|
package sm2
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/config"
|
||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/tjfoc/gmsm/sm2"
|
"github.com/tjfoc/gmsm/sm2"
|
||||||
"math/big"
|
"math/big"
|
||||||
"qteam/config"
|
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/constants/common"
|
||||||
|
"PaymentCenter/config"
|
||||||
"context"
|
"context"
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
|
@ -19,8 +21,6 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"qteam/app/constants/common"
|
|
||||||
"qteam/config"
|
|
||||||
"reflect"
|
"reflect"
|
||||||
"regexp"
|
"regexp"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
package bootstrap
|
package bootstrap
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/jobs"
|
||||||
|
"PaymentCenter/app/jobs/basejob"
|
||||||
|
"PaymentCenter/config"
|
||||||
"github.com/qit-team/snow-core/log/accesslogger"
|
"github.com/qit-team/snow-core/log/accesslogger"
|
||||||
"qteam/app/jobs"
|
|
||||||
"qteam/app/jobs/basejob"
|
|
||||||
"qteam/config"
|
|
||||||
|
|
||||||
"github.com/qit-team/snow-core/db"
|
"github.com/qit-team/snow-core/db"
|
||||||
"github.com/qit-team/snow-core/kernel/close"
|
"github.com/qit-team/snow-core/kernel/close"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package event
|
package event
|
||||||
|
|
||||||
import "qteam/app/utils"
|
import "PaymentCenter/app/utils"
|
||||||
|
|
||||||
type EventHandler interface {
|
type EventHandler interface {
|
||||||
Handle(param interface{})
|
Handle(param interface{})
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package event
|
package event
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"qteam/app/constants/common"
|
"PaymentCenter/app/constants/common"
|
||||||
"qteam/event/observers"
|
"PaymentCenter/event/observers"
|
||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
14
main.go
14
main.go
|
@ -1,16 +1,16 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/console"
|
||||||
|
"PaymentCenter/app/http/routes"
|
||||||
|
"PaymentCenter/app/jobs"
|
||||||
|
"PaymentCenter/bootstrap"
|
||||||
|
"PaymentCenter/config"
|
||||||
|
_ "PaymentCenter/docs"
|
||||||
|
"PaymentCenter/rpc"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"qteam/app/console"
|
|
||||||
"qteam/app/http/routes"
|
|
||||||
"qteam/app/jobs"
|
|
||||||
"qteam/bootstrap"
|
|
||||||
"qteam/config"
|
|
||||||
_ "qteam/docs"
|
|
||||||
"qteam/rpc"
|
|
||||||
|
|
||||||
_ "github.com/go-sql-driver/mysql"
|
_ "github.com/go-sql-driver/mysql"
|
||||||
_ "github.com/qit-team/snow-core/cache/rediscache"
|
_ "github.com/qit-team/snow-core/cache/rediscache"
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package rpc
|
package rpc
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
__ "PaymentCenter/rpc/user"
|
||||||
"github.com/qit-team/snow-core/kernel/server"
|
"github.com/qit-team/snow-core/kernel/server"
|
||||||
__ "qteam/rpc/user"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func StartRpc() error {
|
func StartRpc() error {
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
package __
|
package __
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"PaymentCenter/app/utils"
|
||||||
|
"PaymentCenter/config"
|
||||||
"context"
|
"context"
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
"log"
|
"log"
|
||||||
"net"
|
"net"
|
||||||
"qteam/app/utils"
|
|
||||||
"qteam/config"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// 服务定义
|
// 服务定义
|
||||||
|
|
Loading…
Reference in New Issue