fix
This commit is contained in:
@@ -40,7 +40,7 @@ public class PrintModelServiceBizImpl extends CrudServiceImpl<PrintModelMapper,
|
||||
wrapper.like(StringUtils.isNotBlank(name), PrintModel.NAME, name);
|
||||
if(params.get("type")!=null) {
|
||||
Integer type = Integer.parseInt(params.get("type").toString());
|
||||
wrapper.eq(ObjectUtils.isNotNull(type), PrintModel.LINE_BODY, type);
|
||||
wrapper.eq(ObjectUtils.isNotNull(type), PrintModel.TYPE, type);
|
||||
}
|
||||
if(params.get("lineBody")!=null) {
|
||||
Integer lineBody = Integer.parseInt(params.get("lineBody").toString());
|
||||
|
||||
Reference in New Issue
Block a user