You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package db
|
|
|
|
import "leit.com/leit_seat_aps/common"
|
|
|
|
// 车型所分配的零件族
|
|
type Me_carmodel_supplygrouplst struct {
|
|
Finr int `xorm:"pk"`
|
|
Carmodelid string `xorm:"pk"`
|
|
Supplygroupid string `xorm:"pk"`
|
|
Pos int
|
|
Lastmodif string
|
|
Lastuser string
|
|
Credatuz string
|
|
}
|
|
|
|
func (t *Me_carmodel_supplygrouplst) Clipped() {
|
|
common.TrimStruct(t, *t)
|
|
}
|
|
|
|
func (t *Me_carmodel_supplygrouplst) TableName() string {
|
|
return "me_carmodel_supplygrouplst"
|
|
}
|