参数名修改

This commit is contained in:
meixiongfeng 2022-06-14 14:23:16 +08:00
parent 7025402736
commit 0b1757a11d

View File

@ -26,9 +26,9 @@ type (
} }
IDB_Comp interface { IDB_Comp interface {
// 向db 写日志信息 // 向db 写日志信息
InsertModelLogs(table string, uID string, handle interface{}) (err error) InsertModelLogs(table string, uID string, target interface{}) (err error)
DeleteModelLogs(table string, uID string, where interface{}) (err error) DeleteModelLogs(table string, uID string, where interface{}) (err error)
UpdateModelLogs(table string, uID string, where interface{}, handle interface{}) (err error) UpdateModelLogs(table string, uID string, where interface{}, target interface{}) (err error)
} }
IConfigure_Comp interface { IConfigure_Comp interface {
LoadConfigure(name string, fn interface{}) (err error) LoadConfigure(name string, fn interface{}) (err error)