sandbox.go 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package sandbox
  2. import (
  3. "eta/eta_task/global"
  4. "eta/eta_task/utils"
  5. "time"
  6. )
  7. type Sandbox struct {
  8. SandboxId int `gorm:"column:sandbox_id;primaryKey;autoIncrement" description:"沙盘id"`
  9. Name string `description:"沙盘名称"`
  10. Code string `description:"沙盘code"`
  11. Content string `description:"沙盘数据"`
  12. MindmapData string `description:"思维导图数据"`
  13. PicUrl string `description:"沙盘图片地址"`
  14. SysUserId int `description:"作者id"`
  15. SysUserName string `description:"作者名称"`
  16. IsDelete int8 `description:"是否删除,0:未删除,1:已删除"`
  17. ModifyTime time.Time `description:"修改时间"`
  18. CreateTime time.Time `description:"创建时间"`
  19. SandboxClassifyId int `description:"分类id"`
  20. Sort int `description:"排序"`
  21. Style int `description:"风格"`
  22. }
  23. func GetSandboxListByCondition(condition string, pars []interface{}, startSize, pageSize int) (item []*Sandbox, err error) {
  24. o := global.DbMap[utils.DbNameIndex]
  25. sql := ` SELECT * FROM sandbox WHERE 1=1 `
  26. if condition != "" {
  27. sql += condition
  28. }
  29. sql += " ORDER BY create_time DESC LIMIT ?,? "
  30. pars = append(pars, startSize, pageSize)
  31. err = o.Raw(sql, pars...).Find(&item).Error
  32. return
  33. }
  34. func GetSandboxListCountByCondition(condition string, pars []interface{}) (count int, err error) {
  35. o := global.DbMap[utils.DbNameIndex]
  36. sql := ` SELECT COUNT(1) AS count FROM sandbox WHERE 1=1 `
  37. if condition != "" {
  38. sql += condition
  39. }
  40. err = o.Raw(sql, pars...).Scan(&count).Error
  41. return
  42. }
  43. // ContentDataStruct 沙盘内容结构体
  44. type ContentDataStruct struct {
  45. Cells []struct {
  46. Data *NodeData `json:"data,omitempty"`
  47. } `json:"cells"`
  48. }
  49. type NodeData struct {
  50. LinkData []*LinkData `json:"linkData"`
  51. LinkFold bool `json:"linkFold"`
  52. }
  53. type LinkData struct {
  54. RId string `json:"RId"`
  55. Id int `json:"Id"`
  56. Name string `json:"Name"`
  57. Type int `json:"Type"`
  58. Editing bool `json:"editing"`
  59. DatabaseType int `json:"databaseType"`
  60. DetailParams DetailParams `json:"detailParams"`
  61. }
  62. type DetailParams struct {
  63. Code string `json:"code"`
  64. Id int `json:"id"`
  65. ClassifyId int `json:"classifyId"`
  66. }