|
|
|
@ -53,7 +53,8 @@ public class ${ClassName}ServiceImpl extends ServiceImpl<${ClassName}Mapper, ${C
|
|
|
|
|
#end
|
|
|
|
|
lqw.$mpMethod($condition, ${ClassName}::get$AttrName, bo.get$AttrName());
|
|
|
|
|
#else
|
|
|
|
|
lqw.apply(bo.getParams().get("dataScope") != null,bo.getParams().get("dataScope").toString());
|
|
|
|
|
Object dataScope = bo.getParams().get("dataScope");
|
|
|
|
|
lqw.apply(dataScope != null, dataScope != null ? dataScope.toString() : null);
|
|
|
|
|
Map<String, Object> params = bo.getParams();
|
|
|
|
|
if (params.get("begin$AttrName") != null && params.get("end$AttrName") != null) {
|
|
|
|
|
lqw.between(${ClassName}::get$AttrName ,params.get("begin$AttrName"), params.get("end$AttrName"));
|
|
|
|
|