|
@@ -31,8 +31,8 @@ type Doc struct {
|
|
|
PreviewImgId string `json:"previewImgId" gorm:"column:previewImgId"`
|
|
|
//PreviewImgUrl string `json:"preview_img_url" gorm:"column:previewImgUrl"`
|
|
|
EncryptionLevel int `json:"encryptionLevel" gorm:"column:encryptionLevel"` //
|
|
|
- Source int `json:"source" gorm:"column:source"`
|
|
|
- ProductType int `json:"productType" gorm:"column:productType"`
|
|
|
+ Source int64 `json:"source" gorm:"column:source"`
|
|
|
+ ProductType int64 `json:"productType" gorm:"column:productType"`
|
|
|
UpdateDate time.Time `json:"updateDate" gorm:"column:updateDate"`
|
|
|
}
|
|
|
|