history.go 709 B

1234567891011121314151617181920
  1. package model
  2. import (
  3. "time"
  4. "go.mongodb.org/mongo-driver/bson/primitive"
  5. )
  6. // 历史记录,订单/计划
  7. type History struct {
  8. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  9. TargetId string `bson:"targetId,omitempty" json:"targetId"`
  10. Path string `bson:"path,omitempty" json:"path"`
  11. Collection string `bson:"collection,omitempty" json:"collection"`
  12. Type string `bson:"type,omitempty" json:"type"`
  13. // 谁操作
  14. Userinfo *UserSmaple `bson:"userInfo,omitempty" json:"userInfo"`
  15. Content string `bson:"content,omitempty" json:"content"`
  16. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  17. }