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.

19 lines
364 B

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"
}