You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

file.go 2.1 kB

1234567891011121314151617181920212223242526272829303132333435
  1. package models
  2. import "time"
  3. // DataSet 。
  4. // 说明:
  5. // 表名:data_set
  6. // group: DataSet
  7. // obsolete:
  8. // appliesto:go 1.8+;
  9. // namespace:hongmouer.his.models.DataSet
  10. // assembly: hongmouer.his.models.go
  11. // class:HongMouer.HIS.Models.DataSet
  12. // version:2023-05-06 09:58
  13. type File struct {
  14. Id *int `gorm:"column:id" json:"Id"` //type:*int comment:id version:2023-05-06 09:58
  15. Name string `gorm:"column:name" json:"Name"` //type:string comment:文件名称 version:2023-05-06 09:58
  16. Kind string `gorm:"column:kind" json:"Kind"`
  17. DataType string `gorm:"column:data_type" json:"dataType"` //type:string comment: version:2023-05-06 09:58
  18. Suffix string `gorm:"column:suffix" json:"Suffix"` //type:string comment:后缀名 version:2023-05-06 09:58
  19. Bucket string `gorm:"column:bucket" json:"Bucket"` //type:string comment:桶 version:2023-05-06 09:58
  20. Hash string `gorm:"column:hash" json:"Hash"` //type:string comment:hash version:2023-05-06 09:58
  21. Status string `gorm:"column:status" json:"Status"` //type:string comment:hash version:2023-05-06 09:58
  22. DeletedFlag *int `gorm:"column:deleted_flag" json:"DeletedFlag"` //type:*int comment:是否删除 version:2023-05-06 09:58
  23. CreatedBy *int `gorm:"column:created_by" json:"CreatedBy"` //type:*int comment:创建人 version:2023-05-06 09:58
  24. CreatedTime *time.Time `gorm:"column:created_time" json:"CreatedTime"` //type:*time.Time comment:创建时间 version:2023-05-06 09:58
  25. UpdatedBy *int `gorm:"column:updated_by" json:"UpdatedBy"` //type:*int comment:更新人 version:2023-05-06 09:58
  26. UpdatedTime *time.Time `gorm:"column:updated_time" json:"UpdatedTime"` //type:*time.Time comment:更新时间 version:2023-05-06 09:58
  27. }
  28. // TableName 表名:data_set,。
  29. // 说明:
  30. func TableName() string {
  31. return "t_file"
  32. }

PCM is positioned as Software stack over Cloud, aiming to build the standards and ecology of heterogeneous cloud collaboration for JCC in a non intrusive and autonomous peer-to-peer manner.