1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package example
- import (
- "github.com/flipped-aurora/gin-vue-admin/server/global"
- "github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
- "github.com/flipped-aurora/gin-vue-admin/server/model/example"
- "github.com/flipped-aurora/gin-vue-admin/server/model/system"
- systemService "github.com/flipped-aurora/gin-vue-admin/server/service/system"
- )
- type CustomerService struct {
- }
- //@author: [piexlmax](https://github.com/piexlmax)
- //@function: CreateExaCustomer
- //@description: 创建客户
- //@param: e model.ExaCustomer
- //@return: err error
- func (exa *CustomerService) CreateExaCustomer(e example.ExaCustomer) (err error) {
- err = global.GVA_DB.Create(&e).Error
- return err
- }
- //@author: [piexlmax](https://github.com/piexlmax)
- //@function: DeleteFileChunk
- //@description: 删除客户
- //@param: e model.ExaCustomer
- //@return: err error
- func (exa *CustomerService) DeleteExaCustomer(e example.ExaCustomer) (err error) {
- err = global.GVA_DB.Delete(&e).Error
- return err
- }
- //@author: [piexlmax](https://github.com/piexlmax)
- //@function: UpdateExaCustomer
- //@description: 更新客户
- //@param: e *model.ExaCustomer
- //@return: err error
- func (exa *CustomerService) UpdateExaCustomer(e *example.ExaCustomer) (err error) {
- err = global.GVA_DB.Save(e).Error
- return err
- }
- //@author: [piexlmax](https://github.com/piexlmax)
- //@function: GetExaCustomer
- //@description: 获取客户信息
- //@param: id uint
- //@return: err error, customer model.ExaCustomer
- func (exa *CustomerService) GetExaCustomer(id uint) (err error, customer example.ExaCustomer) {
- err = global.GVA_DB.Where("id = ?", id).First(&customer).Error
- return
- }
- //@author: [piexlmax](https://github.com/piexlmax)
- //@function: GetCustomerInfoList
- //@description: 分页获取客户列表
- //@param: sysUserAuthorityID string, info request.PageInfo
- //@return: err error, list interface{}, total int64
- func (exa *CustomerService) GetCustomerInfoList(sysUserAuthorityID string, info request.PageInfo) (err error, list interface{}, total int64) {
- limit := info.PageSize
- offset := info.PageSize * (info.Page - 1)
- db := global.GVA_DB.Model(&example.ExaCustomer{})
- var a system.SysAuthority
- a.AuthorityId = sysUserAuthorityID
- err, auth := systemService.AuthorityServiceApp.GetAuthorityInfo(a)
- var dataId []string
- for _, v := range auth.DataAuthorityId {
- dataId = append(dataId, v.AuthorityId)
- }
- var CustomerList []example.ExaCustomer
- err = db.Where("sys_user_authority_id in ?", dataId).Count(&total).Error
- if err != nil {
- return err, CustomerList, total
- } else {
- err = db.Limit(limit).Offset(offset).Preload("SysUser").Where("sys_user_authority_id in ?", dataId).Find(&CustomerList).Error
- }
- return err, CustomerList, total
- }
|