123456789101112131415 |
- package models
- type FeedDetailVersion struct {
- Id int64 `xorm:"AUTOINCR PK 'id'" json:"id,omitempty"`
- PastureId int64 `xorm:"pasture_id" json:"pasture_id"`
- FeedTemplateId int64 `xorm:"feed_template_id" json:"feed_template_id"`
- GroupVersion int32 `xorm:"group_version" json:"group_version"`
- Belong int32 `xorm:"belong" json:"belong"`
- CreatedAt int64 `xorm:"created_at" json:"created_at"`
- UpdatedAt int64 `xorm:"updated_at" json:"updated_at"`
- }
- func (f *FeedDetailVersion) TableName() string {
- return "feed_detail_version"
- }
|