| | |
| | | type PersonnelStatusRule struct { |
| | | ID int `gorm:"column:id"` |
| | | Name string `gorm:"column:name"` |
| | | DetectionCountStart int `gorm:"column:capture_count_start"` |
| | | DetectionCountEnd int `gorm:"column:capture_count_end"` |
| | | DetectionDaysStart int `gorm:"column:capture_days_start"` |
| | | DetectionDaysEnd int `gorm:"column:capture_days_end"` |
| | | DetectionCountStart int `gorm:"column:detection_count_start"` |
| | | DetectionCountEnd int `gorm:"column:detection_count_end"` |
| | | DetectionDaysStart int `gorm:"column:detection_days_start"` |
| | | DetectionDaysEnd int `gorm:"column:detection_days_end"` |
| | | Status string `gorm:"column:status"` |
| | | } |
| | | |