|
|
@ -20,13 +20,14 @@ import ( |
|
|
|
* |
|
|
|
******************************************************************************/ |
|
|
|
type WorkCalendar struct { |
|
|
|
PlantNr int `xorm:"pk int 'PlantNr'" json:"WorkCalendar-PlantNr"` |
|
|
|
WorkCalendarNr int `xorm:"pk int 'WorkCalendarNr' autoincr" json:"WorkCalendar-WorkCalendarNr"` |
|
|
|
Descr string `xorm:"nvarchar(100) 'Descr' not null" json:"WorkCalendar-Descr"` |
|
|
|
LastModify grmi.DateTime `xorm:"datetime 'LastModify' not null updated" json:"WorkCalendar-LastModify"` |
|
|
|
LastUser string `xorm:"nvarchar(20) 'LastUser' not null" json:"WorkCalendar-LastUser"` |
|
|
|
CreateTime grmi.DateTime `xorm:"datetime 'CreateTime' not null created" json:"WorkCalendar-CreateTime"` |
|
|
|
WorkCalendarLst []WorkCalendarLstAndDay `xorm:"-" json:"WorkCalendar-WorkCalendarLst"` |
|
|
|
PlantNr int `xorm:"pk int 'PlantNr'" json:"WorkCalendar-PlantNr"` |
|
|
|
WorkCalendarNr int `xorm:"pk int 'WorkCalendarNr' autoincr" json:"WorkCalendar-WorkCalendarNr"` |
|
|
|
Descr string `xorm:"nvarchar(100) 'Descr' not null" json:"WorkCalendar-Descr"` |
|
|
|
LastModify grmi.DateTime `xorm:"datetime 'LastModify' not null updated" json:"WorkCalendar-LastModify"` |
|
|
|
LastUser string `xorm:"nvarchar(20) 'LastUser' not null" json:"WorkCalendar-LastUser"` |
|
|
|
CreateTime grmi.DateTime `xorm:"datetime 'CreateTime' not null created" json:"WorkCalendar-CreateTime"` |
|
|
|
WorkCalendarLst []WorkCalendarLstAndDay `xorm:"-" json:"WorkCalendar-WorkCalendarLst"` |
|
|
|
WorkCalendarLstLi []WorkCalendarLst `xorm:"-" json:"WorkCalendar-WorkCalendarLstLi"` |
|
|
|
} |
|
|
|
|
|
|
|
/****************************************************************************** |
|
|
|