- package model
- import "time"
- type AssetStt struct {
- ID int64 `gorm:"column:id"`
- PastureId string `gorm:"column:pastureId" json:"pastureId"`
- EqId int64 `gorm:"column:eqId" json:"eqId"`
- Shift string `gorm:"column:shift" json:"shift"`
- EnablePerson string `gorm:"column:enablePerson" json:"enablePerson"`
- EnabledTime time.Time `gorm:"column:enabledTime" json:"enabledTime"`
- BlockPerson string `gorm:"column:blockPerson" json:"blockPerson"`
- BlockTime time.Time `gorm:"column:blockTime" json:"blockTime"`
- IntervalA string `gorm:"column:intervalA" json:"intervalA"`
- }
|