Documentation
¶
Index ¶
Constants ¶
View Source
const ( Pending = 1 // Pending # Pending follow up Waiting = 2 // Waiting # Waiting for user response Processed = 3 // Processed Closed = 4 // Closed )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Details ¶
type Details struct { Id int64 `gorm:"primaryKey"` Title string `gorm:"type:varchar(255);not null;default:'';comment:Title"` Description string `gorm:"type:text;comment:Description"` UserId int64 `gorm:"type:bigint;not null;default:0;comment:UserId"` Status uint8 `gorm:"type:tinyint(1);not null;default:1;comment:Status"` Follows []Follow `gorm:"foreignKey:TicketId;references:Id"` CreatedAt time.Time `gorm:"<-:create;comment:Create Time"` UpdatedAt time.Time `gorm:"comment:Update Time"` }
type Follow ¶
type Follow struct { Id int64 `gorm:"primaryKey"` TicketId int64 `gorm:"type:bigint;not null;default:0;comment:TicketId"` From string `gorm:"type:varchar(255);not null;default:'';comment:From"` Type uint8 `gorm:"type:tinyint(1);not null;default:1;comment:Type: 1 text, 2 image"` Content string `gorm:"type:text;comment:Content"` CreatedAt time.Time `gorm:"<-:create;comment:Create Time"` }
type Ticket ¶
type Ticket struct { Id int64 `gorm:"primaryKey"` Title string `gorm:"type:varchar(255);not null;default:'';comment:Title"` Description string `gorm:"type:text;comment:Description"` UserId int64 `gorm:"type:bigint;not null;default:0;comment:UserId"` Status uint8 `gorm:"type:tinyint(1);not null;default:1;comment:Status"` CreatedAt time.Time `gorm:"<-:create;comment:Create Time"` UpdatedAt time.Time `gorm:"comment:Update Time"` }
Click to show internal directories.
Click to hide internal directories.