10 lines
234 B
Go
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
|
|
}
|