package models import ( "errors" "fmt" "reflect" "strings" "github.com/beego/beego/v2/client/orm" ) type CommunityList struct { CommunityId int `orm:"column(community_id);auto" description:"社区图谱"` ParentId string `orm:"column(parent_id);size(225);null" description:"上级id"` UserId string `orm:"column(user_id);size(225);null"` Username string `orm:"column(username);size(255);null"` PromoteName string `orm:"column(promote_name);size(255);null" description:"级别"` Sales string `orm:"column(sales);size(255);null" description:"入仓金额"` TeamSales string `orm:"column(team_sales);size(255);null" description:"社区业绩"` TodayTeamSales string `orm:"column(today_team_sales);size(255);null" description:"今天业绩"` UserBv string `orm:"column(user_bv);size(255);null"` SubStatus string `orm:"column(sub_status);size(255);null"` CTime int64 `orm:"column(c_time);null"` IsYes int `orm:"column(is_yes);null" description:"默认0:待抓取"` } func (t *CommunityList) TableName() string { return "community_list" } func init() { orm.RegisterModel(new(CommunityList)) } // AddCommunityList insert a new CommunityList into database and returns // last inserted Id on success. func AddCommunityList(m *CommunityList) (id int64, err error) { o := orm.NewOrm() id, err = o.Insert(m) return } // GetCommunityListById retrieves CommunityList by Id. Returns error if // Id doesn't exist func GetCommunityListById(id int) (v *CommunityList, err error) { o := orm.NewOrm() v = &CommunityList{CommunityId: id} if err = o.Read(v); err == nil { return v, nil } return nil, err } // GetAllCommunityList retrieves all CommunityList matches certain condition. Returns empty list if // no records exist func GetAllCommunityList(query map[string]string, fields []string, sortby []string, order []string, offset int64, limit int64) (ml []interface{}, err error) { o := orm.NewOrm() qs := o.QueryTable(new(CommunityList)) // query k=v for k, v := range query { // rewrite dot-notation to Object__Attribute k = strings.Replace(k, ".", "__", -1) if strings.Contains(k, "isnull") { qs = qs.Filter(k, (v == "true" || v == "1")) } else { qs = qs.Filter(k, v) } } // order by: var sortFields []string if len(sortby) != 0 { if len(sortby) == len(order) { // 1) for each sort field, there is an associated order for i, v := range sortby { orderby := "" if order[i] == "desc" { orderby = "-" + v } else if order[i] == "asc" { orderby = v } else { return nil, errors.New("Error: Invalid order. Must be either [asc|desc]") } sortFields = append(sortFields, orderby) } qs = qs.OrderBy(sortFields...) } else if len(sortby) != len(order) && len(order) == 1 { // 2) there is exactly one order, all the sorted fields will be sorted by this order for _, v := range sortby { orderby := "" if order[0] == "desc" { orderby = "-" + v } else if order[0] == "asc" { orderby = v } else { return nil, errors.New("Error: Invalid order. Must be either [asc|desc]") } sortFields = append(sortFields, orderby) } } else if len(sortby) != len(order) && len(order) != 1 { return nil, errors.New("Error: 'sortby', 'order' sizes mismatch or 'order' size is not 1") } } else { if len(order) != 0 { return nil, errors.New("Error: unused 'order' fields") } } var l []CommunityList qs = qs.OrderBy(sortFields...) if _, err = qs.Limit(limit, offset).All(&l, fields...); err == nil { if len(fields) == 0 { for _, v := range l { ml = append(ml, v) } } else { // trim unused fields for _, v := range l { m := make(map[string]interface{}) val := reflect.ValueOf(v) for _, fname := range fields { m[fname] = val.FieldByName(fname).Interface() } ml = append(ml, m) } } return ml, nil } return nil, err } // UpdateCommunityList updates CommunityList by Id and returns error if // the record to be updated doesn't exist func UpdateCommunityListById(m *CommunityList) (err error) { o := orm.NewOrm() v := CommunityList{CommunityId: m.CommunityId} // ascertain id exists in the database if err = o.Read(&v); err == nil { var num int64 if num, err = o.Update(m); err == nil { fmt.Println("Number of records updated in database:", num) } } return } // DeleteCommunityList deletes CommunityList by Id and returns error if // the record to be deleted doesn't exist func DeleteCommunityList(id int) (err error) { o := orm.NewOrm() v := CommunityList{CommunityId: id} // ascertain id exists in the database if err = o.Read(&v); err == nil { var num int64 if num, err = o.Delete(&CommunityList{CommunityId: id}); err == nil { fmt.Println("Number of records deleted in database:", num) } } return }