123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- package cygx
- import (
- "github.com/beego/beego/v2/client/orm"
- "github.com/rdlucklib/rdluck_tools/paging"
- "time"
- )
- type CygxYanxuanSpecial struct {
- Id int `orm:"column(id);pk"`
- UserId int
- CreateTime time.Time
- ModifyTime time.Time
- PublishTime time.Time
- Content string
- Tags string
- Status int
- ImgUrl string
- DocUrl string
- Reason string
- Title string
- Type string
- }
- type CygxYanxuanSpeciaResplItem struct {
- Id int `orm:"column(id);pk"`
- UserId int
- CreateTime string
- ModifyTime string
- PublishTime string
- Content string
- Tags string
- Status int
- ImgUrl string
- DocUrl string
- SpecialName string
- Introduction string
- Label string
- NickName string
- RealName string
- Mobile string
- HeadImg string
- BgImg string
- Reason string
- Title string
- CompanyTags string
- IndustryTags string
- Type int
- ContentHasImg int
- Docs []Doc
- Pv string `description:"Pv"`
- Uv string `description:"Uv"`
- ArticleCollectNum int
- AdminName string
- SpecialAuthorId int
- }
- type Doc struct {
- DocName string
- DocSuffix string
- DocUrl string
- DocIcon string
- }
- type GetCygxYanxuanSpeciaResplItemResp struct {
- Paging *paging.PagingItem `description:"分页数据"`
- List []*CygxYanxuanSpeciaResplItem
- }
- func GetGetYanxuanSpecialCount(condition string, pars []interface{}) (count int, err error) {
- o := orm.NewOrmUsingDB("hz_cygx")
- sqlCount := ` SELECT COUNT(1) AS count FROM cygx_yanxuan_special as a
- JOIN cygx_yanxuan_special_author AS b ON a.user_id = b.user_id WHERE 1= 1 `
- if condition != "" {
- sqlCount += condition
- }
- err = o.Raw(sqlCount, pars).QueryRow(&count)
- return
- }
- func GetYanxuanSpecialList(condition string, pars []interface{}, startSize, pageSize int) (items []*CygxYanxuanSpeciaResplItem, err error) {
- o := orm.NewOrmUsingDB("hz_cygx")
- sql := ``
- sql = `SELECT a.*,b.bg_img,b.head_img,b.introduction,b.label,b.mobile,b.nick_name,b.real_name,b.special_name
- FROM cygx_yanxuan_special AS a
- JOIN cygx_yanxuan_special_author AS b ON a.user_id = b.user_id
- WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- sql += ` LIMIT ?,? `
- _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
- return
- }
- func GetYanxuanSpecialListByCondition(condition string, pars []interface{}, startSize, pageSize int) (items []*CygxYanxuanSpeciaResplItem, err error) {
- o := orm.NewOrmUsingDB("hz_cygx")
- sql := ``
- sql = `SELECT a.*
- FROM cygx_yanxuan_special AS a
- WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- sql += ` LIMIT ?,? `
- _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
- return
- }
- type EnableCygxYanxuanSpecialReq struct {
- Id int
- Status int
- Reason string
- }
- func EnableYanxuanSpecial(id, status int, reason, adminName string) (err error) {
- o := orm.NewOrmUsingDB("hz_cygx")
- sql := ``
- sql = `UPDATE cygx_yanxuan_special SET status=?,reason=?,admin_name = ? , publish_time=NOW() WHERE id = ? `
- _, err = o.Raw(sql, status, reason, adminName, id).Exec()
- return
- }
- type CygxYanxuanSpecialItem struct {
- Id int `orm:"column(id);pk"`
- UserId int
- CreateTime string
- ModifyTime string
- PublishTime string
- Content string
- Tags string
- Status int
- ImgUrl string
- DocUrl string
- SpecialName string
- Introduction string
- Label string
- NickName string
- RealName string
- Mobile string
- HeadImg string
- BgImg string
- Reason string
- Title string
- Type int
- CollectNum int
- MyCollectNum int
- IsCollect int
- CompanyTags string
- IndustryTags string
- ContentHasImg int
- Docs []Doc
- }
- func GetYanxuanSpecialFollowUserById(specialId int) (items []int, err error) {
- o := orm.NewOrmUsingDB("hz_cygx")
- sql := ``
- sql = `SELECT b.user_id
- FROM cygx_yanxuan_special AS a
- JOIN cygx_yanxuan_special_follow AS b ON a.user_id = b.follow_user_id
- WHERE a.id=? `
- _, err = o.Raw(sql, specialId).QueryRows(&items)
- return
- }
- func GetYanxuanSpecialItemById(specialId int) (item *CygxYanxuanSpecialItem, err error) {
- o := orm.NewOrmUsingDB("hz_cygx")
- sql := ``
- sql = `SELECT a.*,b.bg_img,b.head_img,b.introduction,b.label,b.mobile,
- b.nick_name,b.real_name,b.special_name
- FROM cygx_yanxuan_special AS a
- JOIN cygx_yanxuan_special_author AS b ON a.user_id = b.user_id
- WHERE a.id=? `
- err = o.Raw(sql, specialId).QueryRow(&item)
- return
- }
- func GetCygxYanxuanSpecialCount(condition string, pars []interface{}) (count int, err error) {
- sqlCount := ` SELECT COUNT(1) AS count FROM cygx_yanxuan_special WHERE 1= 1 `
- if condition != "" {
- sqlCount += condition
- }
- o := orm.NewOrmUsingDB("hz_cygx")
- err = o.Raw(sqlCount, pars).QueryRow(&count)
- return
- }
- type CygxYanxuanSpecialShowButton struct {
- IsShowSpecialAuthor bool
- }
- func GetYanxuanSpecialBySpecialId(specialId int) (item *CygxYanxuanSpecialItem, err error) {
- o := orm.NewOrmUsingDB("hz_cygx")
- sql := ``
- sql = `SELECT a.* FROM cygx_yanxuan_special AS a WHERE a.id=? `
- err = o.Raw(sql, specialId).QueryRow(&item)
- return
- }
- func GetYanxuanSpecialListBycondition(condition string, pars []interface{}, startSize, pageSize int) (items []*CygxYanxuanSpecial, err error) {
- o := orm.NewOrmUsingDB("hz_cygx")
- sql := `SELECT a.* FROM cygx_yanxuan_special 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
- }
|