| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // Code generated by dol build. DO NOT EDIT.
- // source: auto.go
- package model
- import (
- "github.com/2637309949/dolphin/packages/null"
- )
- // ActiveLesson defined
- type ActiveLesson struct {
- //
- ALId null.Int `xorm:"int(11) pk notnull autoincr 'a_l_id'" json:"a_l_id" xml:"a_l_id"`
- //
- ActiveName null.String `xorm:"varchar(100) 'active_name'" json:"active_name" xml:"active_name"`
- //
- StartTime null.Time `xorm:"datetime 'start_time'" json:"start_time" xml:"start_time"`
- //
- EndTime null.Time `xorm:"datetime 'end_time'" json:"end_time" xml:"end_time"`
- //
- ActiveState null.Int `xorm:"int(11) 'active_state'" json:"active_state" xml:"active_state"`
- //
- MaxNum null.Int `xorm:"int(11) 'max_num'" json:"max_num" xml:"max_num"`
- //
- TeaId null.Int `xorm:"int(11) 'tea_id'" json:"tea_id" xml:"tea_id"`
- //
- Creater null.String `xorm:"varchar(36) 'creater'" json:"creater" xml:"creater"`
- //
- CreateDate null.Time `xorm:"datetime 'create_date'" json:"create_date" xml:"create_date"`
- //
- Updater null.String `xorm:"varchar(36) 'updater'" json:"updater" xml:"updater"`
- //
- UpdateDate null.Time `xorm:"datetime 'update_date'" json:"update_date" xml:"update_date"`
- //
- Isdelete null.Int `xorm:"notnull 'isdelete'" json:"isdelete" xml:"isdelete"`
- //
- TlDate null.Time `xorm:"datetime 'tl_date'" json:"tl_date" xml:"tl_date"`
- //
- RoomId null.Int `xorm:"int(11) 'room_id'" json:"room_id" xml:"room_id"`
- //
- SchId null.Int `xorm:"int(11) 'sch_id'" json:"sch_id" xml:"sch_id"`
- //
- ActiveType null.Int `xorm:"int(11) 'active_type'" json:"active_type" xml:"active_type"`
- //
- ReportedNumber null.Int `xorm:"int(11) 'reported_number'" json:"reported_number" xml:"reported_number"`
- //
- Note null.String `xorm:"varchar(200) 'note'" json:"note" xml:"note"`
- //
- AgeGroup null.Int `xorm:"int(11) 'age_group'" json:"age_group" xml:"age_group"`
- //
- BeforeId null.Int `xorm:"int(11) 'before_id'" json:"before_id" xml:"before_id"`
- //
- TkType null.Int `xorm:"int(11) 'tk_type'" json:"tk_type" xml:"tk_type"`
- }
- // TableName table name of defined ActiveLesson
- func (m *ActiveLesson) TableName() string {
- return "active_lesson"
- }
|