rai_serve_company.go 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package cygx
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "time"
  6. )
  7. type CygxRaiServeCompany struct {
  8. ServeCompanyId int `comment:"ServeCompanyId 主键ID"`
  9. CompanyId int `comment:"公司ID"`
  10. CompanyName string `comment:"公司名称"`
  11. CreateTime time.Time `comment:"创建时间"`
  12. Money float64 `comment:"合同金额"`
  13. ServeCoverageRate string `comment:"近四周服务覆盖率"`
  14. SellerId int `comment:"所属销售id"`
  15. SellerName string `comment:"所属销售名称"`
  16. StartDate string `comment:"开始日期"`
  17. EndDate string `comment:"结束日期"`
  18. ShareSeller string `comment:"共享销售"`
  19. ShareSellerId int `comment:"共享销售员id"`
  20. Status string `comment:"客户状态"`
  21. PermissionName string `comment:"权限名"`
  22. IsUserMaker int `comment:"近四周之内是否包含决策人"`
  23. }
  24. type CygxRaiServeCompanyResp struct {
  25. CompanyId int `comment:"公司ID"`
  26. CompanyName string `comment:"公司名称"`
  27. IsUserMaker int `description:"近四周之内是否包含决策人互动过 ,0否,1是"`
  28. Money float64 `comment:"合同金额"`
  29. ServeCoverageRate string `comment:"近四周服务覆盖率"`
  30. SellerId int `comment:"所属销售id"`
  31. SellerName string `comment:"所属销售名称"`
  32. StartDate string `comment:"开始日期"`
  33. EndDate string `comment:"结束日期"`
  34. ShareSeller string `comment:"共享销售"`
  35. ShareSellerId int `comment:"共享销售员id"`
  36. Status string `comment:"客户状态"`
  37. PermissionName string `comment:"权限名"`
  38. ThisWeekAmount float64 `comment:"本周互动量"`
  39. LastWeekAmount float64 `comment:"上周互动量"`
  40. TwoWeekAmount float64 `comment:"上上周互动量"`
  41. ThreeWeekAmount float64 `comment:"上三周互动量"`
  42. ThisMonthAmount float64 `comment:"本月互动量"`
  43. LastMonthAmount float64 `comment:"上月互动量"`
  44. LastMonthQoq string `comment:"上月环比"`
  45. LastMonthQoqIsRed bool `comment:"上月环比是否标红"`
  46. TwoMonthAmount float64 `comment:"上上月互动量"`
  47. }
  48. type CygxRaiServeCompanyListResp struct {
  49. Paging *paging.PagingItem `description:"分页数据"`
  50. List []*CygxRaiServeCompanyResp
  51. }
  52. func GetCygxRaiServeCompanyCount(condition string, pars []interface{}) (count int, err error) {
  53. sqlCount := ` SELECT COUNT(1) AS count FROM cygx_rai_serve_company as art WHERE 1= 1 `
  54. if condition != "" {
  55. sqlCount += condition
  56. }
  57. o := orm.NewOrmUsingDB("hz_cygx")
  58. err = o.Raw(sqlCount, pars).QueryRow(&count)
  59. return
  60. }
  61. // 列表
  62. func GetCygxRaiServeCompanyList(condition string, pars []interface{}, startSize, pageSize int) (items []*CygxRaiServeCompany, err error) {
  63. o := orm.NewOrmUsingDB("hz_cygx")
  64. sql := `SELECT * FROM cygx_rai_serve_company as art WHERE 1= 1 `
  65. if condition != "" {
  66. sql += condition
  67. }
  68. sql += ` LIMIT ?,?`
  69. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  70. return
  71. }