rai_company_user_bill.go 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package rai_serve
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "time"
  5. )
  6. // 权益服务明细表
  7. type CygxRaiCompanyUserBill struct {
  8. BillId int `orm:"column(bill_id);pk" description:"服务明细主键ID"`
  9. Content string `comment:"服务内容说明"`
  10. ServeTypeId int `comment:"服务类型ID"`
  11. ServeTypeName string `comment:"服务类型"`
  12. UserId int `comment:"用户ID"`
  13. Mobile string `comment:"手机号"`
  14. Email string `comment:"邮箱"`
  15. CompanyId int `comment:"公司ID"`
  16. CompanyName string `comment:"公司名称"`
  17. RealName string `comment:"用户实际名称"`
  18. RegisterPlatform int `comment:"来源 1小程序,2:网页"`
  19. ServeCount float64 `comment:"服务量小计"`
  20. IsKp int `comment:"是否是KP,1:是、0:否"`
  21. SourceId int `comment:"来源ID"`
  22. Source string `comment:"来源 "`
  23. WeekStartDate string `comment:"周一开始日期"`
  24. WeekEndDate string `comment:"周日结束日期"`
  25. MonthStartDate string `comment:"月份开始日期"`
  26. MonthEndDate string `comment:"月份结束日期"`
  27. ChartPermissionId int `description:"行业id"`
  28. ChartPermissionName string `description:"行业名称"`
  29. CreateTime time.Time `comment:"创建时间"`
  30. ViewTime string `comment:"浏览时间"`
  31. ActivityId int `description:"活动ID"`
  32. }
  33. // 列表
  34. func GetCygxRaiCompanyUserBillListAll(condition string, pars []interface{}) (items []*CygxRaiCompanyUserBill, err error) {
  35. if condition == "" {
  36. return
  37. }
  38. o := orm.NewOrm()
  39. sql := `SELECT * FROM cygx_rai_company_user_bill WHERE 1= 1 `
  40. if condition != "" {
  41. sql += condition
  42. }
  43. _, err = o.Raw(sql, pars).QueryRows(&items)
  44. return
  45. }
  46. // AddCygxRaiCompanyUserBilllMulti 批量添加
  47. func AddCygxRaiCompanyUserBilllMulti(items []*CygxRaiCompanyUserBill) (err error) {
  48. if len(items) == 0 {
  49. return
  50. }
  51. o, err := orm.NewOrm().Begin()
  52. if err != nil {
  53. return
  54. }
  55. defer func() {
  56. if err == nil {
  57. o.Commit()
  58. } else {
  59. o.Rollback()
  60. }
  61. }()
  62. if len(items) > 0 {
  63. //批量添加流水信息
  64. _, err = o.InsertMulti(len(items), items)
  65. }
  66. return
  67. }