27 lines
580 B
Go
27 lines
580 B
Go
package app
|
|
|
|
import (
|
|
"code.tnxs.net/taxnexus/lib/api/regs/regs_models"
|
|
"github.com/go-sql-driver/mysql"
|
|
)
|
|
|
|
// RatingEngineItemChannelWrapper wraps the object with workflow params
|
|
type RatingEngineItemChannelWrapper struct {
|
|
Obj regs_models.RatingEngineItem
|
|
Principal User
|
|
SagaID string
|
|
SagaType string
|
|
}
|
|
|
|
// RatingEngineItem is a first class object type
|
|
type RatingEngineItem struct {
|
|
Createdbyid string
|
|
Createddate mysql.NullTime
|
|
ID string
|
|
Name string
|
|
Productcode string
|
|
Ratingengine string
|
|
Ref string
|
|
Taxnexuscode string
|
|
}
|