21 lines
338 B
Go
21 lines
338 B
Go
package services
|
|
|
|
import (
|
|
"PaymentCenter/app/constants/errorcode"
|
|
"PaymentCenter/app/models/appmodel"
|
|
"PaymentCenter/app/utils"
|
|
)
|
|
|
|
func handErr(err error) int {
|
|
if err != nil {
|
|
utils.Log(nil, "sys err", err.Error())
|
|
return errorcode.SystemError
|
|
} else {
|
|
return errorcode.Success
|
|
}
|
|
}
|
|
|
|
func EnCryptData(app *appmodel.App) {
|
|
|
|
}
|