1234567891011121314151617181920 |
- package model
- import "time"
- type Oversee struct {
- ID int `gorm:"column:id" `
- PastureName string `gorm:"column:pastureName" json:"pastureName"`
- PastureId int64 `gorm:"column:pastureId" json:"pastureId"`
- DepartmentId int64 `gorm:"column:departmentId" json:"departmentId"`
- EqClassId int64 `gorm:"column:eqClassId" json:"eqClassId"`
- Maintenance string `gorm:"column:maintenance" json:"maintenance"` //指定维修人
- Levelone string `gorm:"column:levelone" json:"levelone"` //一级督办
- Leveltwo string `gorm:"column:leveltwo" json:"leveltwo"` //二级督办
- Levelthree string `gorm:"column:levelthree" json:"levelthree"` //三级督办
- PushTime int64 `gorm:"column:pushTime" json:"pushTime"` //推送时间间隔
- Entryperson string `gorm:"column:entryperson" json:"entryperson"` //录入人
- InputTime time.Time `gorm:"column:inputTime" json:"inputTime"` //录入时间
- EqClassName string `gorm:"column:eqClassName" json:"eqClassName"`
- DepartmentName string `gorm:"column:departmentName" json:"departmentName"`
- }
|