template.go 719 B

123456789101112131415161718192021222324252627282930313233343536
  1. package template
  2. import "go-common/library/time"
  3. const (
  4. // StateNormal 正常
  5. StateNormal = 0
  6. // StateDel 删除
  7. StateDel = 1
  8. )
  9. // Template archive template.
  10. type Template struct {
  11. ID int64 `json:"tid"`
  12. Name string `json:"name"`
  13. // Arctype string `json:"-"`
  14. TypeID int16 `json:"typeid"`
  15. Title string `json:"title"`
  16. Tag string `json:"tags"`
  17. Content string `json:"description"`
  18. Copyright int8 `json:"copyright"`
  19. State int8 `json:"-"`
  20. CTime time.Time `json:"-"`
  21. MTime time.Time `json:"-"`
  22. }
  23. // Copyright get int8 val
  24. func Copyright(cp string) int8 {
  25. if cp == "Original" {
  26. return 1
  27. } else if cp == "Copy" {
  28. return 2
  29. } else {
  30. return 0
  31. }
  32. }