init: 1.0.0

This commit is contained in:
Chang lue Tsen
2025-04-25 12:08:29 +09:00
commit 8addcc584b
1031 changed files with 76472 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
package ticket
import "time"
const (
Pending = 1 // Pending # Pending follow up
Waiting = 2 // Waiting # Waiting for user response
Processed = 3 // Processed
Closed = 4 // Closed
)
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"`
}
func (Ticket) TableName() string {
return "ticket"
}
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"`
}
func (Follow) TableName() string {
return "ticket_follow"
}