financial_analyst.go 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package models
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "time"
  5. )
  6. type AnalystStatus string
  7. const (
  8. AnalystStatusEnabled AnalystStatus = "enabled"
  9. AnalystStatusDisabled AnalystStatus = "disabled"
  10. columns = "id,eta_id,name,head_img_url,introduction"
  11. )
  12. type CrmFinancialAnalyst struct {
  13. Id int `description:"主键"`
  14. ETAId int `description:"eta_id"`
  15. HTId int `description:"ht_id"`
  16. Name string `description:"姓名"`
  17. HeadImgUrl string `description:"头像"`
  18. Introduction string `description:"介绍"`
  19. Status AnalystStatus `description:"状态"`
  20. Deleted bool `description:"是否删除"`
  21. CreatedTime time.Time `description:"创建时间"`
  22. UpdatedTime time.Time `description:"更新时间"`
  23. }
  24. func (m *CrmFinancialAnalyst) TableName() string {
  25. return "crm_financial_analysts"
  26. }
  27. type AnalystView struct {
  28. Id int `json:"Id"`
  29. Name string `json:"Name"`
  30. HeadImgURL string `json:"HeadImgURL"`
  31. Introduction string `json:"Introduction"`
  32. CreatedTime string `json:"CreatedTime"`
  33. }
  34. func GetAnalystByName(name string) (analyst CrmFinancialAnalyst, err error) {
  35. o := orm.NewOrm()
  36. sql := `SELECT * FROM crm_financial_analysts where name =?`
  37. err = o.Raw(sql, name).QueryRow(&analyst)
  38. return
  39. }
  40. func (a *CrmFinancialAnalyst) ToView() *AnalystView {
  41. return &AnalystView{
  42. Id: a.Id,
  43. Name: a.Name,
  44. HeadImgURL: a.HeadImgUrl,
  45. Introduction: a.Introduction,
  46. CreatedTime: a.CreatedTime.Format(time.DateTime),
  47. }
  48. }
  49. func GetAnalystCount(condition string) (count int, err error) {
  50. o := orm.NewOrm()
  51. sql := `SELECT COUNT(*) AS count FROM crm_financial_analysts WHERE 1=1 `
  52. if condition != "" {
  53. sql += condition
  54. }
  55. err = o.Raw(sql).QueryRow(&count)
  56. return
  57. }
  58. func GetAnalystList(condition string, startSize int, pageSize int) (item []*CrmFinancialAnalyst, err error) {
  59. o := orm.NewOrm()
  60. sql := `SELECT * FROM crm_financial_analysts WHERE 1=1`
  61. if condition != "" {
  62. sql += condition
  63. }
  64. sql = sql + ` ORDER BY created_time desc LIMIT ?,?`
  65. _, err = o.Raw(sql, startSize, pageSize).QueryRows(&item)
  66. return
  67. }
  68. // GetAnalystById
  69. // @Description: 根据ID获取信息
  70. // @author: Roc
  71. // @datetime 2024-08-09 18:24:58
  72. // @param id int
  73. // @return analyst CrmFinancialAnalyst
  74. // @return err error
  75. func GetAnalystById(id int) (analyst CrmFinancialAnalyst, err error) {
  76. o := orm.NewOrm()
  77. sql := `SELECT * FROM crm_financial_analysts where id =?`
  78. err = o.Raw(sql, id).QueryRow(&analyst)
  79. return
  80. }
  81. func (m *CrmFinancialAnalyst) Update(cols []string) (err error) {
  82. o := orm.NewOrm()
  83. _, err = o.Update(m, cols...)
  84. return
  85. }