package gmodel

import "context"

// 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
}