package service import ( "aps_crm/constvar" "aps_crm/model" "aps_crm/pkg/ecode" ) type FollowupService struct{} func (FollowupService) AddServiceFollowup(serviceFollowup *model.ServiceFollowup) int { err := model.NewServiceFollowupSearch().Create(serviceFollowup) if err != nil { return ecode.ServiceFollowupExist } return ecode.OK } func (FollowupService) UpdateServiceFollowup(serviceFollowup *model.ServiceFollowup) int { // check serviceFollowup exist _, err := model.NewServiceFollowupSearch().SetId(serviceFollowup.Id).Find() if err != nil { return ecode.ServiceFollowupNotExist } err = model.NewServiceFollowupSearch().SetId(serviceFollowup.Id).Update(serviceFollowup) if err != nil { return ecode.ServiceFollowupSetErr } return ecode.OK } func (FollowupService) DeleteServiceFollowup(ids []int) int { // delete client err := model.NewServiceFollowupSearch().SetIds(ids).Delete() if err != nil { return ecode.ServiceFollowupDeleteErr } return ecode.OK } func (FollowupService) GetServiceFollowupList(page, pageSize int, keywordType constvar.ServiceFollowupKeywordType, keyword string, serviceOrderId int, memberIds []int) ([]*model.ServiceFollowup, int64, int) { // get contact list contacts, total, err := model.NewServiceFollowupSearch(). SetKeywordType(keywordType). SetKeyword(keyword). SetPage(page, pageSize). SetPreload(true). SetServiceOrderId(serviceOrderId). SetMemberIds(memberIds). FindAll() if err != nil { return nil, 0, ecode.ServiceFollowupListErr } return contacts, total, ecode.OK }