ai_scheduler/internal/data/impl/notify_data_impl.go

16 lines
333 B
Go

package impl
import (
"trans_hub/app/physical_goods/supplier/goods/service/internal/data/model"
"trans_hub/tmpl/dataTemp"
"trans_hub/utils"
)
type NotifyDataImpl struct {
dataTemp.DataTemp
}
func NewOrderImpl(db *utils.Db) *NotifyDataImpl {
return &NotifyDataImpl{*dataTemp.NewDataTemp(db, new(model.SupplierNotifyDatum))}
}