package models type FeedTemplateDetail struct { Id int64 `xorm:"id" json:"id"` PastureId int64 `xorm:"pastureid" json:"pasture_id"` FtId int64 `xorm:"ftid" json:"ft_id"` FId int64 `xorm:"fid" json:"f_id"` FName string `xorm:"fname" json:"f_name"` LWeight float64 `xorm:"lweight" json:"l_weight"` FWeight float64 `xorm:"fweight" json:"f_weight"` IsLockCount int32 `xorm:"islockcount" json:"is_lock_count"` IsFg int32 `xorm:"isfg" json:"is_fg"` Sort int32 `xorm:"sort" json:"sort"` FeedGroup string `xorm:"feedgroup" json:"feed_group"` PreFtId int64 `xorm:"preftid" json:"pre_ft_id"` AutoSecond int32 `xorm:"autosecond" json:"auto_second"` AutoSecondName string `xorm:"autosecondname" json:"auto_second_name"` SplitFtPreId int64 `xorm:"splitftpreid" json:"split_ft_pre_id"` Deviation int32 `xorm:"deviation" json:"deviation"` IsModify int32 `xorm:"is_modify" json:"is_modify"` IsShow int32 `xorm:"is_show" json:"is_show"` } func (f *FeedTemplateDetail) TableName() string { return "ftdetail" }