SJA APS后端代码
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.

22 lines
478 B

package db
import "leit.com/leit_seat_aps/common"
// 车型所分配的零件族
type Me_carmodel_partfamilylst struct {
Finr int `xorm:"pk"`
Carmodelid string `xorm:"pk"`
Partfamilyid string `xorm:"pk"`
Pos int
Lastmodif string
Lastuser string
Credatuz string
}
func (t *Me_carmodel_partfamilylst) Clipped() {
common.TrimStruct(t, *t)
}
func (t *Me_carmodel_partfamilylst) TableName() string {
return "me_carmodel_partfamilylst"
}