|
@@ -102,7 +102,7 @@ func MyDataAsset(this *biservice.MyDataAssetReq) *biservice.MyDataAssetResp {
|
|
|
collectInfoCount, followProjectCount, collectDocCount, claimCustomerCount, claimNzjCount := int64(0), int64(0), int64(0), int64(0), int64(0)
|
|
|
collectInfoCount = JyMysql.CountBySql(`select count(1) from bdcollection where userid=?`, this.UserId)
|
|
|
followProjectCount = JyTidb.CountBySql(`select count(1) from follow_project_monitor where s_userid=?`, this.UserId)
|
|
|
- claimCustomerCount = JyMysql.CountBySql(`select count(1) from entniche_user_customer where user_id=? and source=1`, this.EntUserId)
|
|
|
+ claimCustomerCount = JyMysql.CountBySql(`select count(1) from entniche_user_customer where user_id=?`, this.EntUserId)
|
|
|
collectDocCount = JyDocMysql.CountBySql(`select count(1) from user_doc where userId=? and docCategory=2 and isDelete=0`, this.UserId)
|
|
|
claimNzjCount = JyBiMysql.CountBySql(`select count(1) from dwd_f_user_claim where user_id=? and status=0 and source_type=1`, this.NewUserId)
|
|
|
return &biservice.MyDataAssetResp{
|