rai_serve_bill.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package rai_serve
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "hongze/hongze_cygx/utils"
  5. "time"
  6. )
  7. // 权益服务明细表
  8. type CygxRaiServeBill struct {
  9. BillId int `orm:"column(bill_id);pk" description:"服务明细主键ID"`
  10. Content string `comment:"服务内容说明"`
  11. ServeTypeId int `comment:"服务类型ID"`
  12. ServeTypeName string `comment:"服务类型"`
  13. UserId int `comment:"用户ID"`
  14. Mobile string `comment:"手机号"`
  15. Email string `comment:"邮箱"`
  16. CompanyId int `comment:"公司ID"`
  17. CompanyName string `comment:"公司名称"`
  18. RealName string `comment:"用户实际名称"`
  19. RegisterPlatform int `comment:"来源 1小程序,2:网页"`
  20. ServeCount float64 `comment:"服务量小计"`
  21. IsKp int `comment:"是否是KP,1:是、0:否"`
  22. SourceId int `comment:"来源ID"`
  23. Source string `comment:"来源 "`
  24. WeekStartDate string `comment:"周一开始日期"`
  25. WeekEndDate string `comment:"周日结束日期"`
  26. MonthStartDate string `comment:"月份开始日期"`
  27. MonthEndDate string `comment:"月份结束日期"`
  28. ChartPermissionId int `description:"行业id"`
  29. ChartPermissionName string `description:"行业名称"`
  30. CreateTime time.Time `comment:"创建时间"`
  31. ViewTime string `comment:"浏览时间"`
  32. ActivityId int `description:"活动ID"`
  33. }
  34. // Redis对列消息中的结构体
  35. type RaiServeBillRedis struct {
  36. Content string `comment:"服务内容说明"`
  37. UserId int `comment:"用户ID"`
  38. ComapnyId int `comment:"公司ID"`
  39. SourceId int `comment:"来源ID"`
  40. Source string `comment:"来源"`
  41. RegisterPlatform int `comment:"来源 1小程序,2:网页"`
  42. ViewTime time.Time `comment:"浏览时间"`
  43. }
  44. // 添加
  45. func AddCygxRaiServeBill(item *CygxRaiServeBill) (err error) {
  46. o := orm.NewOrm()
  47. _, err = o.Insert(item)
  48. return
  49. }
  50. func GetCygxRaiServeBillCountByUserAndSource(userId, sourceId int, source string) (count int, err error) {
  51. o := orm.NewOrm()
  52. sql := ` SELECT COUNT(1) AS count FROM cygx_rai_serve_bill WHERE user_id = ? AND source_id = 2 AND source = ? `
  53. err = o.Raw(sql, userId, sourceId, source).QueryRow(&count)
  54. return
  55. }
  56. // 列表
  57. func GetCygxRaiServeBillListAll(condition string, pars []interface{}) (items []*CygxRaiServeBill, err error) {
  58. if condition == "" {
  59. return
  60. }
  61. o := orm.NewOrm()
  62. sql := `SELECT * FROM cygx_rai_serve_bill WHERE 1= 1 `
  63. if condition != "" {
  64. sql += condition
  65. }
  66. _, err = o.Raw(sql, pars).QueryRows(&items)
  67. return
  68. }
  69. // AddCygxRaiServeBillMulti 批量添加
  70. func AddCygxRaiServeBillMulti(items []*CygxRaiServeBill) (err error) {
  71. if len(items) == 0 {
  72. return
  73. }
  74. o, err := orm.NewOrm().Begin()
  75. if err != nil {
  76. return
  77. }
  78. defer func() {
  79. if err == nil {
  80. o.Commit()
  81. } else {
  82. o.Rollback()
  83. }
  84. }()
  85. if len(items) > 0 {
  86. //批量添加流水信息
  87. _, err = o.InsertMulti(len(items), items)
  88. }
  89. return
  90. }
  91. // 批量删除
  92. func DelCygxRaiServeCompanyMulti(delBillIds []int) (err error) {
  93. lenArr := len(delBillIds)
  94. if lenArr == 0 {
  95. return
  96. }
  97. o := orm.NewOrm()
  98. sql := ` DELETE FROM cygx_rai_serve_bill WHERE bill_id IN (` + utils.GetOrmInReplace(lenArr) + `) `
  99. _, err = o.Raw(sql, delBillIds).Exec()
  100. return
  101. }
  102. // UpdateActivitySignupDetailMulti 批量修改
  103. func UpdateCygxRaiServeBillMulti(items []*CygxRaiServeBill) (err error) {
  104. o := orm.NewOrm()
  105. p, err := o.Raw(` UPDATE cygx_rai_serve_bill SET
  106. month_start_date = ?,
  107. month_end_date = ?
  108. WHERE bill_id = ? `).Prepare()
  109. if err != nil {
  110. return
  111. }
  112. defer func() {
  113. _ = p.Close() // 别忘记关闭 statement
  114. }()
  115. for _, v := range items {
  116. _, err = p.Exec(
  117. v.MonthStartDate,
  118. v.MonthEndDate,
  119. v.BillId)
  120. if err != nil {
  121. return
  122. }
  123. }
  124. return
  125. }