zhangqian
2023-11-01 530fed8ec225453572d57b15c200ab062c335457
service/serviceFeeManage.go
@@ -1,15 +1,17 @@
package service
import (
   "aps_crm/constvar"
   "aps_crm/model"
   "aps_crm/pkg/ecode"
   "aps_crm/pkg/mysqlx"
)
type FeeManageService struct{}
func (FeeManageService) AddServiceFeeManage(serviceFeeManage *model.ServiceFeeManage) int {
   tx := model.NewContactSearch().Orm.Begin()
   tx := mysqlx.GetDB().Begin()
   err := model.NewClientSearch(tx).Create(serviceFeeManage.Client)
   if err != nil {
@@ -29,28 +31,6 @@
   return ecode.OK
}
func (FeeManageService) DeleteServiceFeeManage(id int) int {
   _, err := model.NewServiceFeeManageSearch(nil).SetId(id).Find()
   if err != nil {
      return ecode.ServiceFeeManageNotExist
   }
   err = model.NewServiceFeeManageSearch(nil).SetId(id).Delete()
   if err != nil {
      return ecode.ServiceFeeManageNotExist
   }
   return ecode.OK
}
func (FeeManageService) GetServiceFeeManageList() ([]*model.ServiceFeeManage, int) {
   list, err := model.NewServiceFeeManageSearch(nil).FindAll()
   if err != nil {
      return nil, ecode.ServiceFeeManageListErr
   }
   return list, ecode.OK
}
func (FeeManageService) UpdateServiceFeeManage(serviceFeeManage *model.ServiceFeeManage) int {
   // check serviceFeeManage exist
   _, err := model.NewServiceFeeManageSearch(nil).SetId(serviceFeeManage.Id).Find()
@@ -58,7 +38,7 @@
      return ecode.ServiceFeeManageNotExist
   }
   tx := model.NewContactSearch().Orm.Begin()
   tx := mysqlx.GetDB().Begin()
   err = model.NewServiceFeeManageSearch(tx).SetId(serviceFeeManage.Id).Update(serviceFeeManage)
   if err != nil {
@@ -77,3 +57,25 @@
   return ecode.OK
}
func (FeeManageService) DeleteServiceFeeManage(ids []int) int {
   // delete client
   err := model.NewServiceFeeManageSearch(nil).SetIds(ids).Delete()
   if err != nil {
      return ecode.ServiceFeeManageDeleteErr
   }
   return ecode.OK
}
func (FeeManageService) GetServiceFeeManageList(page, pageSize int, queryClass constvar.ServiceFeeQueryClass, keywordType constvar.ServiceFeeKeywordType, keyword string) ([]*model.ServiceFeeManage, int64, int) {
   // get contact list
   contacts, total, err := model.NewServiceFeeManageSearch(nil).
      SetQueryClass(queryClass).
      SetKeywordType(keywordType).
      SetKeyword(keyword).
      SetPage(page, pageSize).FindAll()
   if err != nil {
      return nil, 0, ecode.ServiceFeeManageListErr
   }
   return contacts, total, ecode.OK
}