123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775 |
- package models
- import (
- "errors"
- "eta/eta_mobile/utils"
- "github.com/beego/beego/v2/client/orm"
- "github.com/rdlucklib/rdluck_tools/paging"
- "strings"
- "time"
- )
- type EnglishReport struct {
- Id int `orm:"column(id)" description:"报告Id"`
- AddType int `description:"新增方式:1:新增报告,2:继承报告"`
- ClassifyIdFirst int `description:"一级分类id"`
- ClassifyNameFirst string `description:"一级分类名称"`
- ClassifyIdSecond int `description:"二级分类id"`
- ClassifyNameSecond string `description:"二级分类名称"`
- Title string `description:"标题"`
- Abstract string `description:"摘要"`
- Author string `description:"作者"`
- Frequency string `description:"频度"`
- CreateTime string `description:"创建时间"`
- ModifyTime time.Time `description:"修改时间"`
- State int `description:"1:未发布,2:已发布"`
- PublishTime time.Time `description:"发布时间"`
- PrePublishTime time.Time `description:"预发布时间"`
- Stage int `description:"期数"`
- Content string `description:"内容"`
- VideoUrl string `description:"音频文件URL"`
- VideoName string `description:"音频文件名称"`
- VideoPlaySeconds string `description:"音频播放时长"`
- VideoSize string `description:"音频文件大小,单位M"`
- ContentSub string `description:"内容前两个章节"`
- ReportCode string `description:"报告唯一编码"`
- Pv int `description:"Pv"`
- PvEmail int `description:"邮箱PV"`
- EmailState int `description:"群发邮件状态: 0-未发送; 1-已发送"`
- Overview string `description:"英文概述部分"`
- KeyTakeaways string `description:"关键点"`
- FromReportId int `description:"继承的报告ID(英文策略报告ID)"`
- AdminId int `description:"创建者账号"`
- AdminRealName string `description:"创建者姓名"`
- }
- func GetEnglishReportStage(classifyIdFirst, classifyIdSecond int) (count int, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ``
- if classifyIdSecond > 0 {
- sql = "SELECT MAX(stage) AS max_stage FROM english_report WHERE classify_id_second=? "
- o.Raw(sql, classifyIdSecond).QueryRow(&count)
- } else {
- sql = "SELECT MAX(stage) AS max_stage FROM english_report WHERE classify_id_first=? "
- o.Raw(sql, classifyIdFirst).QueryRow(&count)
- }
- return
- }
- func GetEnglishReportStageEdit(classifyIdFirst, classifyIdSecond, reportId int) (count int, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ``
- if classifyIdSecond > 0 {
- sql = "SELECT MAX(stage) AS max_stage FROM english_report WHERE classify_id_second=? AND id<>? "
- o.Raw(sql, classifyIdSecond, reportId).QueryRow(&count)
- } else {
- sql = "SELECT MAX(stage) AS max_stage FROM english_report WHERE classify_id_first=? AND id<>? "
- o.Raw(sql, classifyIdFirst, reportId).QueryRow(&count)
- }
- return
- }
- func AddEnglishReport(item *EnglishReport) (lastId int64, err error) {
- o := orm.NewOrmUsingDB("rddp")
- lastId, err = o.Insert(item)
- return
- }
- func ModifyEnglishReportCode(reportId int64, reportCode string) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `UPDATE english_report SET report_code=? WHERE id=? `
- _, err = o.Raw(sql, reportCode, reportId).Exec()
- return
- }
- type AddEnglishReportReq struct {
- AddType int `description:"新增方式:1:新增报告,2:继承报告"`
- ClassifyIdFirst int `description:"一级分类id"`
- ClassifyNameFirst string `description:"一级分类名称"`
- ClassifyIdSecond int `description:"二级分类id"`
- ClassifyNameSecond string `description:"二级分类名称"`
- Title string `description:"标题"`
- Abstract string `description:"摘要"`
- Author string `description:"作者"`
- Frequency string `description:"频度"`
- State int `description:"状态:1:未发布,2:已发布"`
- Content string `description:"内容"`
- CreateTime string `description:"创建时间"`
- Overview string `description:"英文概述部分"`
- }
- type AddEnglishReportResp struct {
- ReportId int64 `description:"报告id"`
- ReportCode string `description:"报告code"`
- }
- type EditEnglishReportReq struct {
- ReportId int64 `description:"报告id"`
- ClassifyIdFirst int `description:"一级分类id"`
- ClassifyNameFirst string `description:"一级分类名称"`
- ClassifyIdSecond int `description:"二级分类id"`
- ClassifyNameSecond string `description:"二级分类名称"`
- Title string `description:"标题"`
- Abstract string `description:"摘要"`
- Author string `description:"作者"`
- Frequency string `description:"频度"`
- State int `description:"状态:1:未发布,2:已发布"`
- Content string `description:"内容"`
- CreateTime string `description:"创建时间"`
- Overview string `description:"英文概述部分"`
- }
- type EditEnglishReportFromPolicyReq struct {
- ReportId int64 `description:"报告id"`
- Title string `description:"标题"`
- Abstract string `description:"摘要"`
- Author string `description:"作者"`
- Frequency string `description:"频度"`
- CreateTime string `description:"创建时间"`
- //Overview string `description:"英文概述部分"`
- }
- type EditEnglishReportResp struct {
- ReportId int64 `description:"报告id"`
- ReportCode string `description:"报告code"`
- }
- type ElasticEnglishReportDetail struct {
- Id string `description:"报告id或者线上路演Id"`
- ReportId int `description:"报告id"`
- VideoId int `description:"线上路演Id"`
- ClassifyIdFirst int `description:"一级分类id"`
- ClassifyNameFirst string `description:"一级分类名称"`
- ClassifyIdSecond int `description:"二级分类id"`
- ClassifyNameSecond string `description:"二级分类名称"`
- StageStr string `description:"报告期数"`
- Title string `description:"标题"`
- Abstract string `description:"摘要"`
- Author string `description:"作者"`
- Frequency string `description:"频度"`
- PublishState int `description:"状态:1:未发布,2:已发布"`
- BodyContent string `description:"内容"`
- ContentSub string `description:"前两段内容"`
- CreateTime string `description:"创建时间"`
- PublishTime string `description:"发布时间"`
- ReportCode string `description:"报告唯一编码"`
- Overview string `description:"英文概述部分"`
- }
- func EditEnglishReport(item *EnglishReport, reportId int64) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `UPDATE english_report
- SET
- classify_id_first =?,
- classify_name_first = ?,
- classify_id_second = ?,
- classify_name_second = ?,
- title = ?,
- abstract = ?,
- author = ?,
- frequency = ?,
- state = ?,
- content = ?,
- content_sub = ?,
- stage =?,
- create_time = ?,
- modify_time = ?,
- overview = ?
- WHERE id = ? `
- _, err = o.Raw(sql, item.ClassifyIdFirst, item.ClassifyNameFirst, item.ClassifyIdSecond, item.ClassifyNameSecond, item.Title,
- item.Abstract, item.Author, item.Frequency, item.State, item.Content, item.ContentSub, item.Stage, item.CreateTime, time.Now(), item.Overview, reportId).Exec()
- return
- }
- type EnglishReportDetail struct {
- Id int `orm:"column(id)" description:"报告Id"`
- AddType int `description:"新增方式:1:新增报告,2:继承报告"`
- ClassifyIdFirst int `description:"一级分类id"`
- ClassifyNameFirst string `description:"一级分类名称"`
- ClassifyIdSecond int `description:"二级分类id"`
- ClassifyNameSecond string `description:"二级分类名称"`
- Title string `description:"标题"`
- Abstract string `description:"摘要"`
- Author string `description:"作者"`
- Frequency string `description:"频度"`
- CreateTime string `description:"创建时间"`
- ModifyTime string `description:"修改时间"`
- State int `description:"1:未发布,2:已发布"`
- PublishTime string `description:"发布时间"`
- PrePublishTime string `description:"预发布时间"`
- Stage int `description:"期数"`
- MsgIsSend int `description:"消息是否已发送,0:否,1:是"`
- ReportCode string `description:"报告唯一编码"`
- Content string `description:"内容"`
- VideoUrl string `description:"音频文件URL"`
- VideoName string `description:"音频文件名称"`
- VideoPlaySeconds string `description:"音频播放时长"`
- ContentSub string `description:"内容前两个章节"`
- Pv int `description:"Pv"`
- Overview string `description:"英文概述部分"`
- FromReportId int `description:"继承的报告ID(英文策略报告ID)"`
- KeyTakeaways string `description:"关键点"`
- EmailState int `description:"群发邮件状态: 0-未发送; 1-已发送"`
- EmailAuth bool `description:"是否有权限群发邮件"`
- EmailHasFail bool `description:"是否存在邮件发送失败的记录"`
- ClassifyIdRoot int `description:"顶级分类id"`
- ClassifyNameRoot string `description:"顶级分类名称"`
- }
- func GetEnglishReportById(reportId int) (item *EnglishReportDetail, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `SELECT * FROM english_report WHERE id=?`
- err = o.Raw(sql, reportId).QueryRow(&item)
- return
- }
- func GetEnglishReportItemById(reportId int) (item *EnglishReport, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `SELECT * FROM english_report WHERE id = ? LIMIT 1`
- err = o.Raw(sql, reportId).QueryRow(&item)
- return
- }
- type EnglishReportList struct {
- Id int `description:"报告Id"`
- AddType int `description:"新增方式:1:新增报告,2:继承报告"`
- ClassifyIdFirst int `description:"一级分类id"`
- ClassifyNameFirst string `description:"一级分类名称"`
- ClassifyIdSecond int `description:"二级分类id"`
- ClassifyNameSecond string `description:"二级分类名称"`
- Title string `description:"标题"`
- Abstract string `description:"摘要"`
- Author string `description:"作者"`
- Frequency string `description:"频度"`
- CreateTime string `description:"创建时间"`
- ModifyTime time.Time `description:"修改时间"`
- State int `description:"1:未发布,2:已发布"`
- PublishTime string `description:"发布时间"`
- PrePublishTime string `description:"预发布时间"`
- Stage int `description:"期数"`
- Content string `description:"内容"`
- VideoUrl string `description:"音频文件URL"`
- VideoName string `description:"音频文件名称"`
- VideoPlaySeconds string `description:"音频播放时长"`
- ContentSub string `description:"内容前两个章节"`
- ReportCode string `description:"报告唯一编码"`
- Pv int `description:"Pv"`
- ShareUrl string `description:"分享url"`
- PvEmail int `description:"邮箱PV"`
- EmailState int `description:"群发邮件状态: 0-未发送; 1-已发送"`
- EmailAuth bool `description:"是否有权限群发邮件"`
- EmailHasFail bool `description:"是否存在邮件发送失败的记录"`
- CanEdit bool `description:"是否可编辑"`
- Editor string `description:"编辑人"`
- FromReportId int `description:"继承的报告ID(英文策略报告ID)"`
- AdminId int `description:"创建者账号"`
- AdminRealName string `description:"创建者姓名"`
- FullClassifyName string `description:"顶级分类名/父级分类名/当前分类名"`
- ClassifyIdRoot int `description:"顶级分类id"`
- ClassifyNameRoot string `description:"顶级分类名称"`
- }
- type EnglishReportListResp struct {
- List []*EnglishReportList
- Paging *paging.PagingItem `description:"分页数据"`
- }
- func GetEnglishReportListCount(condition string, pars []interface{}, companyType string) (count int, err error) {
- //产品权限
- companyTypeSqlStr := ``
- if companyType == "ficc" {
- companyTypeSqlStr = " AND classify_id_first != 40 "
- } else if companyType == "权益" {
- companyTypeSqlStr = " AND classify_id_first = 40 "
- }
- oRddp := orm.NewOrmUsingDB("rddp")
- sql := `SELECT COUNT(1) AS count FROM english_report WHERE 1=1 ` + companyTypeSqlStr
- if condition != "" {
- sql += condition
- }
- err = oRddp.Raw(sql, pars).QueryRow(&count)
- return
- }
- func GetEnglishReportList(condition string, pars []interface{}, companyType string, startSize, pageSize int) (items []*EnglishReportList, err error) {
- o := orm.NewOrmUsingDB("rddp")
- //产品权限
- companyTypeSqlStr := ``
- if companyType == "ficc" {
- companyTypeSqlStr = " AND classify_id_first != 40 "
- } else if companyType == "权益" {
- companyTypeSqlStr = " AND classify_id_first = 40 "
- }
- sql := `SELECT *
- FROM english_report WHERE 1=1 ` + companyTypeSqlStr
- if condition != "" {
- sql += condition
- }
- sql += `ORDER BY state ASC, modify_time DESC LIMIT ?,?`
- _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
- return
- }
- func GetEnglishReportByCondition(condition string, pars []interface{}) (items []*EnglishReport, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `SELECT *
- FROM english_report WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- _, err = o.Raw(sql, pars).QueryRows(&items)
- return
- }
- // 发布报告
- func PublishEnglishReportById(reportId int, publishTime string) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `UPDATE english_report SET state=2,publish_time=?,pre_publish_time=null,modify_time=NOW() WHERE id = ? `
- _, err = o.Raw(sql, publishTime, reportId).Exec()
- return
- }
- // 取消发布报告
- func PublishCancelEnglishReport(reportIds int) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ` UPDATE english_report SET state=1,pre_publish_time=null WHERE id =? `
- _, err = o.Raw(sql, reportIds).Exec()
- return
- }
- // SetPrePublishEnglishReportById 设置定时发布
- func SetPrePublishEnglishReportById(reportId int, prePublishTime string) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `UPDATE english_report SET pre_publish_time=? WHERE id = ? and state = 1 `
- _, err = o.Raw(sql, prePublishTime, reportId).Exec()
- return
- }
- // DeleteEnglishReportAndChapter 删除报告及章节
- func DeleteEnglishReportAndChapter(reportInfo *EnglishReportDetail) (err error) {
- reportId := reportInfo.Id
- if reportInfo.State == 2 {
- err = errors.New("报告已发布,不可删除")
- return
- }
- err = DeleteEnglishReport(reportId)
- if err != nil {
- err = errors.New("删除失败, Err: " + err.Error())
- return
- }
- return
- }
- // 删除报告
- func DeleteEnglishReport(reportIds int) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ` DELETE FROM english_report WHERE id =? `
- _, err = o.Raw(sql, reportIds).Exec()
- return
- }
- func EditEnglishReportContent(reportId int, content, contentSub string) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ` UPDATE english_report SET content=?,content_sub=?,modify_time=NOW() WHERE id=? `
- _, err = o.Raw(sql, content, contentSub, reportId).Exec()
- return
- }
- func AddEnglishReportSaveLog(reportId, adminId int, content, contentSub, adminName string) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ` INSERT INTO english_report_save_log(report_id, content,content_sub,admin_id,admin_name) VALUES (?,?,?,?,?) `
- _, err = o.Raw(sql, reportId, content, contentSub, adminId, adminName).Exec()
- return
- }
- type EnglishClassifyList struct {
- Id int `orm:"column(id);pk"`
- ClassifyName string `description:"分类名称"`
- Sort int `description:"排序"`
- ParentId int `description:"父级分类id"`
- RootId int `description:"一级分类ID"`
- CreateTime time.Time `description:"创建时间"`
- ModifyTime time.Time `description:"修改时间"`
- ClassifyLabel string `description:"分类标签"`
- ShowType int `description:"展示类型:1-列表 2-专栏"`
- IsShow int `description:"是否在小程序显示:1-显示 0-隐藏"`
- //ClassifyType int `description:"分类类型:0英文报告,1英文线上路演"`
- EnPermissions []int `description:"英文权限IDs"`
- Child []*EnglishClassifyList
- }
- type EnglishClassifyListResp struct {
- List []*EnglishClassifyList
- Paging *paging.PagingItem `description:"分页数据"`
- }
- // GetEnglishClassifyRootId 获取一级分类列表
- func GetEnglishClassifyRootId(startSize, pageSize int, keyWord string) (items []*EnglishClassifyList, err error) {
- sql := ``
- o := orm.NewOrmUsingDB("rddp")
- if keyWord != "" {
- sql = `SELECT * FROM (
- SELECT * FROM english_classify
- WHERE parent_id=0 AND classify_name LIKE '%` + keyWord + `%'
- UNION
- SELECT * FROM english_classify
- WHERE id IN(SELECT parent_id FROM english_classify
- WHERE parent_id>0 AND classify_name LIKE '%` + keyWord + `%')
- )AS t
- ORDER BY sort ASC,create_time ASC
- LIMIT ?,? `
- _, err = o.Raw(sql, startSize, pageSize).QueryRows(&items)
- } else {
- sql = `SELECT * FROM english_classify WHERE parent_id=0 ORDER BY sort ASC,create_time ASC LIMIT ?,? `
- _, err = o.Raw(sql, startSize, pageSize).QueryRows(&items)
- }
- return
- }
- func GetEnglishClassifyListCount(keyWord string) (count int, err error) {
- sqlCount := ``
- o := orm.NewOrmUsingDB("rddp")
- if keyWord != "" {
- sqlCount = `SELECT COUNT(1) AS count FROM (
- SELECT * FROM english_classify
- WHERE parent_id=0 AND classify_name LIKE '%` + keyWord + `%'
- UNION
- SELECT * FROM english_classify
- WHERE id IN(SELECT parent_id FROM english_classify
- WHERE parent_id>0 AND classify_name LIKE '%` + keyWord + `%')
- )AS t `
- err = o.Raw(sqlCount).QueryRow(&count)
- } else {
- sqlCount = `SELECT COUNT(1) AS count FROM english_classify WHERE parent_id=0`
- err = o.Raw(sqlCount).QueryRow(&count)
- }
- return
- }
- func GetEnglishClassifyListByRootId(rootIds []int, keyWord string) (items []*EnglishClassifyList, err error) {
- sql := ``
- o := orm.NewOrmUsingDB("rddp")
- if keyWord != "" {
- sql = `SELECT
- a.*
- FROM
- english_classify a
- LEFT JOIN english_classify b ON a.root_id = b.id
- LEFT JOIN english_classify c ON a.parent_id = c.id
- WHERE a.parent_id >0 and a.classify_name LIKE '%` + keyWord + `%' and a.root_id IN (` + utils.GetOrmInReplace(len(rootIds)) + `)`
- _, err = o.Raw(sql, rootIds).QueryRows(&items)
- } else {
- sql = `SELECT * FROM english_classify WHERE parent_id >0 and root_id IN (` + utils.GetOrmInReplace(len(rootIds)) + `) `
- _, err = o.Raw(sql, rootIds).QueryRows(&items)
- }
- return
- }
- func GetEnglishClassifyChildByIds(ids []int) (items []*EnglishClassifyList, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `SELECT * FROM english_classify WHERE id IN (` + utils.GetOrmInReplace(len(ids)) + `) ORDER BY create_time ASC `
- _, err = o.Raw(sql, ids).QueryRows(&items)
- return
- }
- func GetEnglishReportDetailByClassifyId(classifyIdFirst, classifyIdSecond int) (item *EnglishReportDetail, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ` SELECT * FROM english_report WHERE 1=1 `
- if classifyIdSecond > 0 {
- sql = sql + ` AND classify_id_second=? ORDER BY stage DESC LIMIT 1`
- err = o.Raw(sql, classifyIdSecond).QueryRow(&item)
- } else {
- sql = sql + ` AND classify_id_first=? ORDER BY stage DESC LIMIT 1`
- err = o.Raw(sql, classifyIdFirst).QueryRow(&item)
- }
- return
- }
- // Update 更新
- func (item *EnglishReport) Update(cols []string) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- _, err = o.Update(item, cols...)
- return
- }
- // ModifyEnglishReportAuthor 更改英文报告作者
- func ModifyEnglishReportAuthor(condition string, pars []interface{}, authorName string) (count int, err error) {
- //产品权限
- oRddp := orm.NewOrmUsingDB("rddp")
- sql := `UPDATE english_report set author = ? WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- err = oRddp.Raw(sql, authorName, pars).QueryRow(&count)
- return
- }
- type EnglishClassify struct {
- Id int `orm:"column(id);pk"`
- ClassifyName string `description:"分类名称"`
- Sort int `description:"排序"`
- ParentId int `description:"父级分类id"`
- RootId int `description:"一级分类ID"`
- CreateTime time.Time `description:"创建时间"`
- ModifyTime time.Time `description:"修改时间"`
- ClassifyLabel string `description:"分类标签"`
- ShowType int `description:"展示类型:1-列表 2-专栏"`
- IsShow int `description:"是否在小程序显示:1-显示 0-隐藏"`
- //ClassifyType int `description:"分类类型:0英文报告,1英文线上路演"`
- }
- func AddEnglishClassify(item *EnglishClassify) (lastId int64, err error) {
- o := orm.NewOrmUsingDB("rddp")
- lastId, err = o.Insert(item)
- return
- }
- func ModifyEnglishClassify(item *EnglishClassify) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `UPDATE english_classify
- SET
- classify_name = ?,
- sort = ?,
- parent_id = ?,
- root_id = ?,
- modify_time = ?
- WHERE id = ? `
- _, err = o.Raw(sql, item.ClassifyName, item.Sort, item.ParentId, item.RootId, item.ModifyTime, item.Id).Exec()
- return
- }
- // UpdateClassify 更新分类
- func (classifyInfo *EnglishClassify) UpdateEnglishClassify(cols []string) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- _, err = o.Update(classifyInfo, cols...)
- return
- }
- // DeleteEnglishClassify 删除英文分类
- func DeleteEnglishClassify(classifyId int) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ` DELETE FROM english_classify WHERE id =? `
- _, err = o.Raw(sql, classifyId).Exec()
- return
- }
- func GetEnglishClassifyChildCounts(parentId int) (count int, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `SELECT COUNT(1) AS count FROM english_classify WHERE parent_id=? `
- err = o.Raw(sql, parentId).QueryRow(&count)
- return
- }
- func GetEnglishReportCounts(classifyId, parentId int) (count int, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ``
- if parentId == 0 {
- sql = `SELECT COUNT(1) AS count FROM english_report WHERE classify_id_first=? `
- } else {
- sql = `SELECT COUNT(1) AS count FROM english_report WHERE classify_id_second=? `
- }
- err = o.Raw(sql, classifyId).QueryRow(&count)
- return
- }
- func GetEnglishClassifyCountsByName(name string, parentId int) (count int, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `SELECT COUNT(1) AS count FROM english_classify WHERE classify_name=? AND parent_id = ? `
- err = o.Raw(sql, name, parentId).QueryRow(&count)
- return
- }
- // GetEnglishFirstClassifyList 获取一级、二级分类列表
- func GetEnglishFirstClassifyList(startSize, pageSize int) (items []*EnglishClassifyList, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `SELECT * FROM english_classify WHERE parent_id =0 ORDER BY sort ASC,create_time ASC LIMIT ?,? `
- _, err = o.Raw(sql, startSize, pageSize).QueryRows(&items)
- return
- }
- // GetEnglishSecondClassifyList 获取一级、二级分类列表
- func GetEnglishSecondClassifyList(rootIds []int) (items []*EnglishClassifyList, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `SELECT * FROM english_classify WHERE root_id IN (` + utils.GetOrmInReplace(len(rootIds)) + `) and parent_id>0 and root_id=parent_id ORDER BY sort ASC,create_time ASC`
- _, err = o.Raw(sql, rootIds).QueryRows(&items)
- return
- }
- func GetEnglishFirstClassifyListCount() (count int, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sqlCount := `SELECT COUNT(1) AS count FROM english_classify WHERE parent_id=0`
- err = o.Raw(sqlCount).QueryRow(&count)
- return
- }
- func GetEnglishReportClassifyById(classifyId int) (item *EnglishClassify, err error) {
- sql := `SELECT * FROM english_classify WHERE id=?`
- o := orm.NewOrmUsingDB("rddp")
- err = o.Raw(sql, classifyId).QueryRow(&item)
- return
- }
- func GetEnglishReportClassifyByIds(classifyIds []int) (list []*EnglishClassify, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `SELECT * FROM english_classify WHERE id IN (` + utils.GetOrmInReplace(len(classifyIds)) + `)`
- _, err = o.Raw(sql, classifyIds).QueryRows(&list)
- return
- }
- // UpdateEnglishReportSecondClassifyNameByClassifyId 更新报告分类名称字段
- func UpdateEnglishReportSecondClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := " UPDATE english_report SET classify_name_second = ? WHERE classify_id_second = ? "
- _, err = o.Raw(sql, classifyName, classifyId).Exec()
- return
- }
- // UpdateEnglishReportFirstClassifyNameByClassifyId 更新报告分类名称字段
- func UpdateEnglishReportFirstClassifyNameByClassifyId(classifyId int, classifyName string) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := " UPDATE english_report SET classify_name_first = ? WHERE classify_id_first = ? "
- _, err = o.Raw(sql, classifyName, classifyId).Exec()
- return
- }
- // UpdateEnglishReportFirstClassifyNameByClassifyId 更新报告分类名称字段
- func UpdateEnglishReportByClassifyId(classifyFirstName, classifySecondName string, firstClassifyId, secondClassifyId int, ids string) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := " UPDATE english_report SET classify_name_first = ?,classify_name_second = ?,classify_id_first=?, classify_id_second =? WHERE id IN (" + ids + ") "
- _, err = o.Raw(sql, classifyFirstName, classifySecondName, firstClassifyId, secondClassifyId).Exec()
- return
- }
- // FetchEnglishReportById 主键获取英文报告
- func FetchEnglishReportById(reportId int) (item *EnglishReport, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := `SELECT * FROM english_report WHERE id=?`
- err = o.Raw(sql, reportId).QueryRow(&item)
- return
- }
- // UpdateReport 更新英文报告
- func (reportInfo *EnglishReport) UpdateReport(cols []string) (err error) {
- o := orm.NewOrmUsingDB("rddp")
- _, err = o.Update(reportInfo, cols...)
- return
- }
- // GetAllEnglishClassify 获取所有英文分类
- func GetAllEnglishClassify() (list []*Classify, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ` SELECT * FROM english_classify `
- _, err = o.Raw(sql).QueryRows(&list)
- return
- }
- // GetEnglishReportByIds 根据IDs获取英文报告列表
- func GetEnglishReportByIds(reportIds []int, fieldArr []string) (list []*EnglishReport, err error) {
- listLen := len(reportIds)
- if listLen == 0 {
- return
- }
- fields := ` * `
- if len(fieldArr) > 0 {
- fields = strings.Join(fieldArr, ",")
- }
- o := orm.NewOrmUsingDB("rddp")
- sql := `SELECT ` + fields + ` FROM english_report WHERE id IN (` + utils.GetOrmInReplace(listLen) + `)`
- _, err = o.Raw(sql, reportIds).QueryRows(&list)
- return
- }
- // MarkEditEnReport 标记编辑英文研报的请求数据
- type MarkEditEnReport struct {
- ReportId int `description:"研报id"`
- Status int `description:"标记状态,1:编辑中,2:编辑完成"`
- }
- type EnglishClassifyNameParentName struct {
- Id int `description:"分类ID"`
- ClassifyName string `description:"分类名称"`
- Sort int `description:"排序"`
- ParentId int `description:"父级分类id"`
- CreateTime time.Time `description:"创建时间"`
- ModifyTime time.Time `description:"修改时间"`
- ClassifyLabel string `description:"分类标签"`
- ShowType int `description:"展示类型:1-列表 2-专栏"`
- IsShow int `description:"是否在小程序显示:1-显示 0-隐藏"`
- ParentClassifyName string `description:"父级分类名称"`
- }
- func GetEnglishClassifyByClassifyNameAndParentName(parentClassiyName, classifyName string) (item EnglishClassifyNameParentName, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := "SELECT c1.*, c2.classify_name as parent_classify_name FROM english_classify c1 LEFT JOIN english_classify c2 on c1.parent_id = c2.id where c1.parent_id > 0 and c2.classify_name = ? and c1.classify_name= ?"
- err = o.Raw(sql, parentClassiyName, classifyName).QueryRow(&item)
- return
- }
- type RSClassifyList []*EnglishClassifyList
- func (m RSClassifyList) Len() int {
- return len(m)
- }
- func (m RSClassifyList) Less(i, j int) bool {
- return m[i].Sort < m[j].Sort
- }
- func (m RSClassifyList) Swap(i, j int) {
- m[i], m[j] = m[j], m[i]
- }
- type RSChildClassifyList []*EnglishClassifyList
- func (m RSChildClassifyList) Len() int {
- return len(m)
- }
- func (m RSChildClassifyList) Less(i, j int) bool {
- return m[i].Sort < m[j].Sort
- }
- func (m RSChildClassifyList) Swap(i, j int) {
- m[i], m[j] = m[j], m[i]
- }
- // GetEnglishClassifyByClassifyNameParentId 获取英文分类
- func GetEnglishClassifyByClassifyNameParentId(classifyName string, parentId int) (item *Classify, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ` SELECT * FROM english_classify where classify_name = ? and parent_id = ? `
- err = o.Raw(sql, classifyName, parentId).QueryRow(&item)
- return
- }
- type EnglishClassifyFullName struct {
- Id int `description:"分类ID"`
- ParentId int `description:"父级分类id"`
- RootId int `description:"一级分类ID"`
- RootName string `description:"一级分类名"`
- ParentName string `description:"二级分类名"`
- ClassifyName string `description:"分类名称"`
- }
- // GetEnglishClassifyFullNameByIds 获取英文分类名一级/二级/三级
- func GetEnglishClassifyFullNameByIds(classifyIds []int) (list []*EnglishClassifyFullName, err error) {
- o := orm.NewOrmUsingDB("rddp")
- sql := ` SELECT
- a.id,
- a.parent_id,
- a.root_id,
- a.classify_name,
- b.classify_name AS root_name,
- c.classify_name AS parent_name
- FROM
- english_classify a
- LEFT JOIN english_classify b ON a.root_id = b.id
- LEFT JOIN english_classify c ON a.parent_id = c.id
- where a.id IN (` + utils.GetOrmInReplace(len(classifyIds)) + `)`
- _, err = o.Raw(sql, classifyIds).QueryRows(&list)
- return
- }
|