Initial commit: 商品售卖网站
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package schemas
|
||||
|
||||
type CreateTicketRequest struct {
|
||||
Title string `json:"title" binding:"required"`
|
||||
Content string `json:"content" binding:"required"`
|
||||
Category string `json:"category"`
|
||||
}
|
||||
|
||||
type UpdateTicketRequest struct {
|
||||
Status *string `json:"status"`
|
||||
AssignedTo *uint `json:"assigned_to"`
|
||||
Reply *string `json:"reply"`
|
||||
}
|
||||
Reference in New Issue
Block a user