Commit bd6f5132 by 庄冰

ic3

parent 4eccce74
...@@ -146,6 +146,31 @@ class NeedsolutionService extends ServiceBase { ...@@ -146,6 +146,31 @@ class NeedsolutionService extends ServiceBase {
sql = sql+" and solutionContent->'$.solution.entName' = :entName"; sql = sql+" and solutionContent->'$.solution.entName' = :entName";
sqlCount = sqlCount+" and solutionContent->'$.solution.entName' = :entName"; sqlCount = sqlCount+" and solutionContent->'$.solution.entName' = :entName";
paramWhere.entName = ab.entName; paramWhere.entName = ab.entName;
}//
if (ab.organizationType) {//组织类型
sql = sql+" and solutionContent->'$.solution.organizationType' = :organizationType";
sqlCount = sqlCount+" and solutionContent->'$.solution.organizationType' = :organizationType";
paramWhere.organizationType = ab.organizationType;
}
if (ab.entNature) {//公司性质
sql = sql+" and solutionContent->'$.solution.entNature' = :entNature";
sqlCount = sqlCount+" and solutionContent->'$.solution.entNature' = :entNature";
paramWhere.entNature = ab.entNature;
}
if (ab.city) {//城市
sql = sql+" and solutionContent->'$.solution.city' = :city";
sqlCount = sqlCount+" and solutionContent->'$.solution.city' = :city";
paramWhere.city = ab.city;
}
if (ab.province) {//省份
sql = sql+" and solutionContent->'$.solution.province' = :province";
sqlCount = sqlCount+" and solutionContent->'$.solution.province' = :province";
paramWhere.province = ab.province;
}
if (ab.taxpayerType) {//纳税人类型
sql = sql+" and solutionContent->'$.solution.taxpayerType' = :taxpayerType";
sqlCount = sqlCount+" and solutionContent->'$.solution.taxpayerType' = :taxpayerType";
paramWhere.taxpayerType = ab.taxpayerType;
} }
} }
if(bizType=="companyreg_cloud"){//云上公司注册 if(bizType=="companyreg_cloud"){//云上公司注册
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment