fusenapi/model/gmodel/fs_cloud_render_log_logic.go

10 lines
250 B
Go
Raw Normal View History

2023-06-19 10:27:31 +00:00
package gmodel
2023-07-11 09:08:19 +00:00
2023-08-08 04:22:15 +00:00
import "context"
2023-07-11 09:08:19 +00:00
// TODO: 使用model的属性做你想做的
2023-08-08 04:22:15 +00:00
func (r *FsCloudRenderLogModel) Create(ctx context.Context, data *FsCloudRenderLog) error {
return r.db.WithContext(ctx).Model(&FsCloudRenderLog{}).Create(data).Error
}