| 1234567891011121314151617181920212223242526272829303132333435 |
- // Code generated by dol build. DO NOT EDIT.
- // source: auto.go
- package model
- import (
- "github.com/2637309949/dolphin/packages/null"
- )
- // CheckFlowSet defined
- type CheckFlowSet struct {
- //
- CFSId null.Int `xorm:"int(11) pk notnull autoincr 'c_f_s_id'" json:"c_f_s_id" xml:"c_f_s_id"`
- //
- PkObject null.Int `xorm:"int(11) 'pk_object'" json:"pk_object" xml:"pk_object"`
- //
- CfsName null.String `xorm:"varchar(100) 'cfs_name'" json:"cfs_name" xml:"cfs_name"`
- //
- MaxFloor null.Int `xorm:"int(11) 'max_floor'" json:"max_floor" xml:"max_floor"`
- //
- Homesetid null.Int `xorm:"int(11) 'homesetid'" json:"homesetid" xml:"homesetid"`
- //
- 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 CheckFlowSet
- func (m *CheckFlowSet) TableName() string {
- return "check_flow_set"
- }
|