1234567891011121314151617 |
- package models
- type FpdetailFname struct {
- FtID string `xorm:"ftid" json:"ftid"` // 配方ID
- FID string `xorm:"fid" json:"fid"` // 饲料ID
- FName string `xorm:"fname" json:"fname"` // 饲料名称
- FWeight float64 `xorm:"fweight" json:"fweight"` // 饲料重量
- Sort int `xorm:"sort" json:"sort"` // 排序
- ID string `xorm:"id" json:"id"` // 详情ID
- SumFWeight float64 `xorm:"sumFweight" json:"sumFweight"` // 重量占比
- TimesOne float64 `xorm:"timesOne" json:"timesOne"` // 第一班次
- TimesTwo float64 `xorm:"timesTwo" json:"timesTwo"` // 第二班次
- TimesThree float64 `xorm:"timesThree" json:"timesThree"` // 第三班次
- TimesFour float64 `xorm:"timesFour" json:"timesFour"` // 第四班次
- TimesFive float64 `xorm:"timesFive" json:"timesFive"` // 第五班次
- TimesSix float64 `xorm:"timesSix" json:"timesSix"` // 第六班次
- }
|