fusenapi/model/gmodel/fs_product_design_gather_logic.go

10 lines
234 B
Go
Raw Normal View History

2023-06-19 10:27:31 +00:00
package gmodel
2023-06-30 09:20:11 +00:00
import "context"
// TODO: 使用model的属性做你想做的
func (g *FsProductDesignGatherModel) Create(ctx context.Context, data *FsProductDesignGather) error {
return g.db.WithContext(ctx).Create(&data).Error
}