fusenapi/model/gmodel/fs_tool_logs_logic.go

10 lines
255 B
Go
Raw Normal View History

2023-06-19 10:27:31 +00:00
package gmodel
2023-07-11 09:08:19 +00:00
import "context"
2023-07-11 09:08:19 +00:00
// TODO: 使用model的属性做你想做的
func (t *FsToolLogsModel) FindAll(ctx context.Context) (resp []FsToolLogs, err error) {
err = t.db.WithContext(ctx).Model(&FsToolLogs{}).Find(&resp).Error
return resp, err
}