8 lines
201 B
Go
8 lines
201 B
Go
package gmodel
|
|
|
|
// TODO: 使用model的属性做你想做的
|
|
|
|
func (w *FsFeishuWebhookLogModel) Create(data *FsFeishuWebhookLog) error {
|
|
return w.db.Model(&FsFeishuWebhookLog{}).Create(&data).Error
|
|
}
|