feedp.go 990 B

1234567891011121314151617
  1. package models
  2. type FpdetailFname struct {
  3. FtID string `xorm:"ftid" json:"ftid"` // 配方ID
  4. FID string `xorm:"fid" json:"fid"` // 饲料ID
  5. FName string `xorm:"fname" json:"fname"` // 饲料名称
  6. FWeight float64 `xorm:"fweight" json:"fweight"` // 饲料重量
  7. Sort int `xorm:"sort" json:"sort"` // 排序
  8. ID string `xorm:"id" json:"id"` // 详情ID
  9. SumFWeight float64 `xorm:"sumFweight" json:"sumFweight"` // 重量占比
  10. TimesOne float64 `xorm:"timesOne" json:"timesOne"` // 第一班次
  11. TimesTwo float64 `xorm:"timesTwo" json:"timesTwo"` // 第二班次
  12. TimesThree float64 `xorm:"timesThree" json:"timesThree"` // 第三班次
  13. TimesFour float64 `xorm:"timesFour" json:"timesFour"` // 第四班次
  14. TimesFive float64 `xorm:"timesFive" json:"timesFive"` // 第五班次
  15. TimesSix float64 `xorm:"timesSix" json:"timesSix"` // 第六班次
  16. }