Parcourir la source

修复客户管理示例文件的查询bug

QM303176530 il y a 4 ans
Parent
commit
0dcb0267b0
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      server/service/exa_customer.go

+ 1 - 1
server/service/exa_customer.go

@@ -61,7 +61,7 @@ func GetExaCustomer(id uint) (err error, customer model.ExaCustomer) {
 func GetCustomerInfoList(sysUserAuthorityID string, info request.PageInfo) (err error, list interface{}, total int) {
 	limit := info.PageSize
 	offset := info.PageSize * (info.Page - 1)
-	db := global.GVA_DB.Model(&model.SysAuthority{})
+	db := global.GVA_DB.Model(&model.ExaCustomer{})
 	var a model.SysAuthority
 	a.AuthorityId = sysUserAuthorityID
 	err, auth := GetAuthorityInfo(a)