fusenapi/model/gmodel/fs_cloud_render_log_logic.go

10 lines
250 B
Go
Raw Normal View History

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