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