123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- package models
- import (
- "github.com/beego/beego/v2/client/orm"
- "time"
- )
- type CygxTag struct {
- TagId int64 `orm:"column(tag_id);pk"`
- TagName string `orm:"column(tag_name);NOT NULL"`
- ArticleTypes string `orm:"column(article_types);NOT NULL"`
- ActivityTypes string `orm:"column(activity_types);NOT NULL"`
- Industries string `orm:"column(industries);NOT NULL"`
- SubjectNames string `orm:"column(subject_names);NOT NULL"`
- Sort int `orm:"column(sort);"`
- ModifyTime time.Time `orm:"column(modify_time)"`
- CreateTime time.Time `orm:"column(create_time)"`
- OnlineTime time.Time `orm:"column(online_time)"`
- OfflineTime time.Time `orm:"column(offline_time)"`
- Status int `orm:"column(status);NOT NULL"`
- }
- func AddCygxTag(item *CygxTag) (id int64, err error) {
- o := orm.NewOrm()
- id, err = o.Insert(item)
- return
- }
- func (m *CygxTag) Update(cols []string) (err error) {
- o := orm.NewOrm()
- _, err = o.Update(m, cols...)
- return
- }
- type CygxTagList struct {
- TagId int64 `orm:"column(tag_id);pk"`
- TagName string `orm:"column(tag_name);NOT NULL"`
- ArticleTypes string `orm:"column(article_types);NOT NULL"`
- ActivityTypes string `orm:"column(activity_types);NOT NULL"`
- Industries string `orm:"column(industries);NOT NULL"`
- SubjectNames string `orm:"column(subject_names);NOT NULL"`
- Sort int `orm:"column(sort);"`
- ModifyTime string `orm:"column(modify_time)"`
- CreateTime string `orm:"column(create_time)"`
- OnlineTime string `orm:"column(online_time)"`
- OfflineTime string `orm:"column(offline_time)"`
- Status int `orm:"column(status);NOT NULL"`
- Atag bool
- Btag bool
- Ctag bool
- Dtag bool
- CheckList []string
- }
- func GetCygxTagListCondition(condition string, pars []interface{}, startSize, pageSize int) (items []*CygxTagList, err error) {
- o := orm.NewOrm()
- sql := `SELECT * FROM cygx_tag as a WHERE 1= 1 `
- if condition != "" {
- sql += condition
- }
- if startSize+pageSize > 0 {
- sql += ` LIMIT ?,? `
- _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
- } else {
- _, err = o.Raw(sql, pars).QueryRows(&items)
- }
- return
- }
- func GetCygxTagList(cond string) (items []*CygxTagList, err error) {
- o := orm.NewOrm()
- sql := `SELECT * FROM cygx_tag WHERE 1=1 AND status = 1 `
- if cond != "" {
- sql += cond
- } else {
- sql += ` ORDER BY sort ASC `
- }
- _, err = o.Raw(sql).QueryRows(&items)
- return
- }
- func UpdateCygxTagStatus(id, status int) (err error) {
- o := orm.NewOrm()
- sql := ``
- if status == 1 {
- sql = ` UPDATE cygx_tag
- SET
- status =1,
- online_time = NOW(),
- modify_time = NOW()
- WHERE tag_id = ?`
- } else {
- sql = ` UPDATE cygx_tag
- SET
- status =0,
- offline_time = NOW(),
- modify_time = NOW()
- WHERE tag_id = ?`
- }
- _, err = o.Raw(sql, id).Exec()
- return
- }
- func GetCygxTagByTagId(tagId int) (item *CygxTag, err error) {
- o := orm.NewOrm()
- sql := `SELECT * FROM cygx_tag WHERE tag_id=? `
- err = o.Raw(sql, tagId).QueryRow(&item)
- return
- }
- func GetCygxTagMinSort() (sort int, err error) {
- o := orm.NewOrm()
- sql := `SELECT min(sort) FROM cygx_tag WHERE sort <> 0 `
- err = o.Raw(sql).QueryRow(&sort)
- return
- }
- func MoveDownCygxTagBySort(prevSort, currentSort int) (err error) {
- o := orm.NewOrm()
- sql := `update cygx_tag set sort = sort - 1 where sort <= ? and sort> ? `
- _, err = o.Raw(sql, prevSort, currentSort).Exec()
- return
- }
- func MoveUpCygxTagBySort(prevSort, currentSort int) (err error) {
- o := orm.NewOrm()
- sql := `update cygx_tag set sort = sort + 1 where sort >= ? and sort< ? `
- _, err = o.Raw(sql, prevSort, currentSort).Exec()
- return
- }
- type CygxTagIdReq struct {
- TagId int `description:"TagId"`
- }
|