| 1234567891011121314151617181920212223242526272829303132333435 |
- // Code generated by dol build. DO NOT EDIT.
- // source: auto.go
- package model
- import (
- "github.com/2637309949/dolphin/packages/null"
- )
- // EcOfYj defined
- type EcOfYj struct {
- //
- EcOfYjId null.Int `xorm:"int(11) pk notnull autoincr 'ec_of_yj_id'" json:"ec_of_yj_id" xml:"ec_of_yj_id"`
- //
- OfId null.Int `xorm:"int(11) 'of_id'" json:"of_id" xml:"of_id"`
- //
- UserId null.Int `xorm:"int(11) 'user_id'" json:"user_id" xml:"user_id"`
- //
- YjblNum null.Float `xorm:"float(11,2) 'yjbl_num'" json:"yjbl_num" xml:"yjbl_num"`
- //
- 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"`
- }
- // TableName table name of defined EcOfYj
- func (m *EcOfYj) TableName() string {
- return "ec_of_yj"
- }
|