Commit c4c4e6b9 by 任晓松

增加pathCode查询参数

parent a58ccb45
......@@ -1067,6 +1067,11 @@ class OrderInfoService extends ServiceBase {
sqlCount += " and channelItemName like :channelItemName";
paramWhere.channelItemName = "%" + actionBody.channelItemName.trim() + "%";
}
if (actionBody.typeCode) {
sql += " and pathCode like :typeCode";
sqlCount += " and pathCode like :typeCode";
paramWhere.typeCode = "/" + actionBody.typeCode.trim() + "/%";
}
if (actionBody.channelServiceNo) {
sql += " and channelServiceNo like :channelServiceNo";
sqlCount += " and channelServiceNo like :channelServiceNo";
......
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