update data type
This commit is contained in:
parent
93bed37b9c
commit
a0d52fc093
@ -93,7 +93,7 @@ func NewWithCodeAndData(code any, data map[string]any) IException {
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 21:28 2022/6/25
|
||||
func New(code any, data map[string]any, defaultMessage ...string) IException {
|
||||
func New(code any, data any, defaultMessage ...string) IException {
|
||||
if nil == data {
|
||||
// 保证数据结构的一致性, 同时避免后续使用出现空指针
|
||||
data = map[string]any{}
|
||||
@ -164,6 +164,6 @@ func IsSuccess(e *Exception) bool {
|
||||
// Author : go_developer@163.com<白茶清欢>
|
||||
//
|
||||
// Date : 22:35 2022/6/25
|
||||
func NewSuccess(data map[string]any) IException {
|
||||
func NewSuccess(data any) IException {
|
||||
return New(defaultSuccessCode, data, "")
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user