This commit is contained in:
xiangheng
2024-11-07 15:40:14 +08:00
parent e1c8aa0b99
commit 784d9bdd4a
5 changed files with 47 additions and 43 deletions

View File

@@ -7,12 +7,3 @@ type PageResp struct {
PageSize int `json:"pageSize"` // 每页Size
Lists interface{} `json:"lists"` // 数据
}
// Copy 拷贝结构体
// func Copy(toValue interface{}, fromValue interface{}) interface{} {
// if err := copier.Copy(toValue, fromValue); err != nil {
// core.Logger.Errorf("Copy err: err=[%+v]", err)
// panic(SystemError)
// }
// return toValue
// }