| 12345678910111213141516171819202122232425 |
- // Code generated by dol build. DO NOT EDIT.
- // source: auto.go
- package model
- import (
- "github.com/2637309949/dolphin/packages/null"
- )
- // TimeSet defined
- type TimeSet struct {
- //
- T3250 null.Int `xorm:"int(11) pk notnull autoincr 't_325_0'" json:"t_325_0" xml:"t_325_0"`
- //
- TimeName null.String `xorm:"varchar(500) notnull 'time_name'" json:"time_name" xml:"time_name"`
- //
- TimeCode null.String `xorm:"varchar(500) notnull 'time_code'" json:"time_code" xml:"time_code"`
- //
- Isdelete null.Int `xorm:"int(11) 'isdelete'" json:"isdelete" xml:"isdelete"`
- }
- // TableName table name of defined TimeSet
- func (m *TimeSet) TableName() string {
- return "time_set"
- }
|