fusenapi/model/gmodel/fs_product_design_gather_logic.go
laodaming c17ab5ae5c fix
2023-06-30 17:20:11 +08:00

10 lines
234 B
Go

package gmodel
import "context"
// TODO: 使用model的属性做你想做的
func (g *FsProductDesignGatherModel) Create(ctx context.Context, data *FsProductDesignGather) error {
return g.db.WithContext(ctx).Create(&data).Error
}