| 12345678910111213141516171819202122 |
- package log
- import (
- "time"
- )
- type LogScanningCode struct {
- Id uint `json:"id"`
- Supplier string `json:"supplier"`
- OrderNum string `json:"order_num"`
- GameId int `json:"game_id"`
- LogUuid string `json:"log_uuid"`
- Status int `json:"status"` // 1成功2失败
- TaskType int `json:"task_type"`
- CreateDate time.Time `json:"create_date"`
- CreateTime time.Time `json:"create_time"` // 创建时间
- }
- func (LogScanningCode) TableName() string {
- return "log_scanning_code"
- }
|