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