| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // Code generated by dol build. DO NOT EDIT.
- // source: auto.go
- package model
- import (
- "github.com/2637309949/dolphin/packages/null"
- )
- // HomeEmailMessage defined
- type HomeEmailMessage struct {
- //
- T2840 null.Int `xorm:"int(11) pk notnull autoincr 't_284_0'" json:"t_284_0" xml:"t_284_0"`
- //
- Title null.String `xorm:"varchar(500) 'title'" json:"title" xml:"title"`
- //
- Content null.String `xorm:"varchar(2000) 'content'" json:"content" xml:"content"`
- //
- Email null.String `xorm:"varchar(50) 'email'" json:"email" xml:"email"`
- //
- Sendtime null.Time `xorm:"datetime 'sendtime'" json:"sendtime" xml:"sendtime"`
- //
- IfSend null.Int `xorm:"int(11) 'if_send'" json:"if_send" xml:"if_send"`
- //
- IfSendcn null.String `xorm:"varchar(50) 'if_sendcn'" json:"if_sendcn" xml:"if_sendcn"`
- //
- UserId null.Int `xorm:"int(11) 'user_id'" json:"user_id" xml:"user_id"`
- //
- StuId null.Int `xorm:"int(11) 'stu_id'" json:"stu_id" xml:"stu_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"`
- }
- // TableName table name of defined HomeEmailMessage
- func (m *HomeEmailMessage) TableName() string {
- return "home_email_message"
- }
|