assetstt.go 630 B

123456789101112131415
  1. package model
  2. import "time"
  3. type AssetStt struct {
  4. ID int64 `gorm:"column:id"`
  5. PastureId string `gorm:"column:pastureId" json:"pastureId"`
  6. EqId int64 `gorm:"column:eqId" json:"eqId"`
  7. Shift string `gorm:"column:shift" json:"shift"`
  8. EnablePerson string `gorm:"column:enablePerson" json:"enablePerson"`
  9. EnabledTime time.Time `gorm:"column:enabledTime" json:"enabledTime"`
  10. BlockPerson string `gorm:"column:blockPerson" json:"blockPerson"`
  11. BlockTime time.Time `gorm:"column:blockTime" json:"blockTime"`
  12. IntervalA string `gorm:"column:intervalA" json:"intervalA"`
  13. }