123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521 |
- package sandbox
- import (
- "eta_gn/eta_api/global"
- "eta_gn/eta_api/utils"
- "fmt"
- "github.com/rdlucklib/rdluck_tools/paging"
- "time"
- )
- type Sandbox struct {
- SandboxId int `gorm:"primaryKey;column:sandbox_id;type:int(9) unsigned;not null"`
- Name string `gorm:"index:idx_name;column:name;type:varchar(64);not null;default:''"`
- Code string `gorm:"column:code;type:varchar(255);not null"`
- Content string `gorm:"column:content;type:longtext;not null"`
- MindmapData string `gorm:"column:mindmap_data;type:longtext;not null"`
- PicUrl string `gorm:"column:pic_url;type:varchar(255);not null;default:''"`
- IsDelete int `gorm:"column:is_delete;type:tinyint(9) unsigned;not null;default:0"`
- ModifyTime time.Time `gorm:"column:modify_time;type:timestamp;default:CURRENT_TIMESTAMP"`
- CreateTime time.Time `gorm:"column:create_time;type:timestamp;default:CURRENT_TIMESTAMP"`
- Sort int `gorm:"column:sort;type:int(9);default:0"`
- SandboxClassifyId int `gorm:"column:sandbox_classify_id;type:int(11);default:0"`
- SysUserId int `gorm:"column:sys_user_id;type:int(10) unsigned;not null;default:0"`
- SysUserName string `gorm:"column:sys_user_name;type:varchar(32);not null;default:''"`
- ChartPermissionId int `gorm:"column:chart_permission_id;type:int(9) unsigned;not null;default:0"`
- ChartPermissionName string `gorm:"column:chart_permission_name;type:varchar(32);not null;default:''"`
- Style int `gorm:"column:style;type:int(8)"`
- }
- func (sandbox *Sandbox) Update(cols []string) (err error) {
-
-
- err = global.DmSQL["data"].Select(cols).Updates(sandbox).Error
- return
- }
- func GetSandboxById(sandboxId int) (sandboxInfo *Sandbox, err error) {
-
- sql := `select * from sandbox where sandbox_id = ? and is_delete = 0`
-
- err = global.DmSQL["data"].Raw(sql, sandboxId).First(&sandboxInfo).Error
- return
- }
- type SandboxListItem struct {
- SandboxId int `description:"沙盘id"`
- Name string `description:"沙盘名称"`
- ChartPermissionId int `description:"品种id"`
- ChartPermissionName string `description:"品种名称"`
- CurrVersion int `description:"当前版本"`
- Code string `description:"沙盘code"`
- VersionCode string `description:"沙盘版本code"`
-
- PicUrl string `description:"沙盘图片地址"`
- OpUserId int `description:"最近一次编辑操作的用户id"`
- OpUserName string `description:"最近一次编辑的用户名称(冗余字段,避免查表)"`
- IsDelete int8 `description:"是否删除,0:未删除,1:已删除" json:"is_delete"`
- CanEdit bool `description:"是否可编辑"`
- Editor string `description:"编辑人"`
- VersionTotal int `description:"历史版本数量"`
- ModifyTime time.Time `description:"修改时间"`
- CreateTime time.Time `description:"创建时间"`
- }
- func GetList(condition string, pars []interface{}, startSize, pageSize int) (total int, list []*Sandbox, err error) {
-
- sql := "select a.sandbox_id,a.name,a.code,a.pic_url,a.sys_user_id,a.sys_user_name,a.modify_time,a.create_time from sandbox as a where 1=1 AND a.is_delete = 0 "
- sql += condition
- sql += ` order by a.modify_time desc,a.sandbox_id desc`
- totalSql := `select count(1) total from (` + sql + `) z `
- err = global.DmSQL["data"].Raw(totalSql, pars...).Scan(&total).Error
-
- if err != nil {
- return
- }
- sql += ` LIMIT ?,? `
-
- pars = append(pars, startSize)
- pars = append(pars, pageSize)
- err = global.DmSQL["data"].Raw(sql, pars...).Find(&list).Error
- return
- }
- type SandboxSaveResp struct {
- *Sandbox
- VersionCode string `description:"版本号"`
- }
- func GetSandboxInfoByAdminId(adminId int) (items []*SandboxClassifyItems, err error) {
-
- sql := ` SELECT sandbox_id,sandbox_classify_id,name AS sandbox_classify_name,code,
- sys_user_id,sys_user_name
- FROM sandbox where sys_user_id = ? ORDER BY sort asc,create_time ASC `
-
- err = global.DmSQL["data"].Raw(sql, adminId).Find(&items).Error
- return
- }
- func GetSandboxClassify(sandboxClassifyId int) (sandbox_classify_id string, err error) {
-
- sql := `SELECT GROUP_CONCAT(t.sandbox_classify_id) AS sandbox_classify_id FROM (
- SELECT a.sandbox_classify_id FROM sandbox_classify AS a
- WHERE a.sandbox_classify_id=?
- UNION ALL
- SELECT a.sandbox_classify_id FROM sandbox_classify AS a
- WHERE a.parent_id=? UNION ALL
- SELECT
- sandbox_classify_id
- FROM
- sandbox_classify
- WHERE
- parent_id IN ( SELECT sandbox_classify_id FROM sandbox_classify WHERE parent_id = ? )
- )AS t`
-
- err = global.DmSQL["data"].Raw(sql, sandboxClassifyId, sandboxClassifyId, sandboxClassifyId).Scan(&sandbox_classify_id).Error
- return
- }
- type SandboxListItems struct {
- Sandbox
- ParentIds string `gorm:"-"`
- }
- func GetSandboxListByCondition(condition string, pars []interface{}, startSize, pageSize int) (item []*SandboxListItems, err error) {
-
- sql := ` SELECT * FROM sandbox WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- sql += " ORDER BY create_time DESC LIMIT ?,? "
-
- pars = append(pars, startSize)
- pars = append(pars, pageSize)
- err = global.DmSQL["data"].Raw(sql, pars...).Find(&item).Error
- return
- }
- func GetSandboxListCountByCondition(condition string, pars []interface{}) (count int, err error) {
-
- sql := ` SELECT COUNT(1) AS count FROM sandbox WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
-
- err = global.DmSQL["data"].Raw(sql, pars...).Scan(&count).Error
- return
- }
- type SandboxListResp struct {
- Paging *paging.PagingItem
- List []*SandboxListItems
- }
- func AddSandbox(item *Sandbox) (lastId int64, err error) {
-
-
- err = global.DmSQL["data"].Create(item).Error
- return
- }
- func GetSandboxAllParentByClassifyId(sandboxClassifyId int) (ids string, err error) {
-
- sql := `SELECT
- GROUP_CONCAT(DISTINCT m.sandbox_classify_id ORDER BY m.level) AS ids
- FROM
- (
- SELECT
- @id AS _id,(
- SELECT
- @id := parent_id
- FROM
- sandbox_classify
- WHERE
- sandbox_classify_id = _id
- )
- FROM
- (
- SELECT
- @id :=(
- SELECT
- parent_id
- FROM
- sandbox_classify
- WHERE
- sandbox_classify_id = ?
- )) vm,
- sandbox_classify m
- WHERE
- @id IS NOT NULL
- ) vm
- INNER JOIN sandbox_classify m
- WHERE
- sandbox_classify_id = vm._id `
-
- err = global.DmSQL["data"].Raw(sql, sandboxClassifyId).Scan(&ids).Error
- return
- }
- type MoveSandboxReq struct {
- SandboxId int `description:"沙盘ID"`
- PrevSandboxId int `description:"上一个沙盘ID"`
- NextSandboxId int `description:"下一个沙盘ID"`
- SandboxClassifyId int `description:"分类id"`
- }
- func GetSandboxClassifyCountById(classifyId int) (count int, err error) {
-
- sql := `SELECT count(1) AS count FROM sandbox_classify WHERE sandbox_classify_id=? `
-
- err = global.DmSQL["data"].Raw(sql, classifyId).Scan(&count).Error
- return
- }
- func GetSandboxNameByIds(ids []int) (items []*Sandbox, err error) {
- if len(ids) == 0 {
- return
- }
-
- sql := ` SELECT sandbox_id, name FROM sandbox WHERE sandbox_id in (` + utils.GetOrmInReplace(len(ids)) + `) `
-
- err = global.DmSQL["data"].Raw(sql, ids).Find(&items).Error
- return
- }
- func MoveSandbox(sandboxId, classifyId int) (err error) {
-
- sql := ` UPDATE sandbox
- SET
- sandbox_classify_id = ?
- WHERE sandbox_id = ?`
-
- err = global.DmSQL["data"].Exec(sql, classifyId, sandboxId).Error
- return
- }
- func UpdateSandboxSortByClassifyId(classifyId, nowSort, prevSandboxId int, updateSort string) (err error) {
-
- sql := ` update sandbox set sort = ` + updateSort + ` WHERE sandbox_classify_id=? AND `
- if prevSandboxId > 0 {
- sql += ` (sort > ? or (sandbox_id > ` + fmt.Sprint(prevSandboxId) + ` and sort = ` + fmt.Sprint(nowSort) + `))`
- }
-
- err = global.DmSQL["data"].Exec(sql, classifyId, nowSort).Error
- return
- }
- func GetFirstSandboxByClassifyId(classifyId int) (item *Sandbox, err error) {
-
- sql := ` SELECT * FROM sandbox WHERE sandbox_classify_id=? order by sort asc,sandbox_id asc limit 1`
-
- err = global.DmSQL["data"].Raw(sql, classifyId).First(&item).Error
- return
- }
- type ContentDataStruct struct {
- Cells []struct {
- Data *NodeData `json:"data,omitempty"`
- } `json:"cells"`
- }
- type NodeData struct {
- LinkData []*LinkData `json:"linkData"`
- LinkFold bool `json:"linkFold"`
- }
- type LinkData struct {
- RId string `json:"RId"`
- Id int `json:"Id"`
- Name string `json:"Name"`
- Type int `json:"Type"`
- Editing bool `json:"editing"`
- DatabaseType int `json:"databaseType"`
- DetailParams DetailParams `json:"detailParams"`
- }
- type DetailParams struct {
- Code string `json:"code"`
- Id int `json:"id"`
- ClassifyId int `json:"classifyId"`
- }
- func UpdateSandboxContent(list []Sandbox) (err error) {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- tx := global.DmSQL["data"].Begin()
- defer func() {
- if err != nil {
- _ = tx.Rollback()
- return
- }
- _ = tx.Commit()
- }()
- cols := []string{"Content", "ModifyTime"}
- for _, sandbox := range list {
- err = tx.Select(cols).Updates(sandbox).Error
- if err != nil {
- return
- }
- }
- return
- }
|