|
@@ -8,10 +8,10 @@ import (
|
|
|
type OperationHis struct {
|
|
|
ID int `gorm:"primary_key" json:"id"`
|
|
|
OperationType int `gorm:"type:int" json:"operationType"`
|
|
|
- ModuleType int `gorm:"type:int" json:"moduleType"`
|
|
|
- HandleContent string `gorm:"type:varchar(1000)" json:"handleContent"`
|
|
|
- HandleUserId string `gorm:"type:varchar(255)" json:"handleUserId"`
|
|
|
- HandleTime time.Time `gorm:"type:timestamp;default CURRENT_TIMESTAMP" json:"handleTime"`
|
|
|
+ ModuleType int `gorm:"type:int" json:"moduleType"`
|
|
|
+ HandleContent string `gorm:"type:varchar(1000)" json:"handleContent"`
|
|
|
+ HandleUserId string `gorm:"type:varchar(255)" json:"handleUserId"`
|
|
|
+ HandleTime time.Time `gorm:"type:timestamp;default CURRENT_TIMESTAMP" json:"handleTime"`
|
|
|
TenantId string `gorm:"type:varchar(12)" json:"tenantId"`
|
|
|
}
|
|
|
|