package db import "leit.com/leit_seat_aps/common" //周模型日清单 type Weekmodellst struct { Finr int `xorm:"pk"` Weekmodelid int `xorm:"pk"` Workdate int `xorm:"pk"` Daymodelid int } func (t *Weekmodellst) Clipped() { common.TrimStruct(t, *t) } func (t *Weekmodellst) TableName() string { return "weekmodellst" }