1234567891011121314151617 |
- package model
- type DataWarningItems struct {
- Id int64 `json:"id"`
- WarningId int64 `json:"warningId"`
- GroupId int32 `json:"groupId"`
- FieldName string `json:"fieldName"`
- FieldDesc string `json:"fieldDesc"`
- Operator string `json:"operator"`
- Value string `json:"value"`
- CreatedAt int64 `json:"createdAt"`
- UpdatedAt int64 `json:"updatedAt"`
- }
- func (d *DataWarningItems) TableName() string {
- return "data_warning_items"
- }
|