|
package types
|
|
|
|
import "github.com/go-sql-driver/mysql"
|
|
|
|
// 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
|
|
}
|