This commit is contained in:
dy 2025-07-10 14:43:57 +08:00
parent 8233524b2b
commit f9ea62db04
4 changed files with 9 additions and 8 deletions

View File

@ -113,7 +113,7 @@ public class CleanOrder extends TenantEntity {
/**
* 是否退订01
*/
private int isUnbooking;
private Integer isUnbooking;
/**
* 更新人id

View File

@ -114,7 +114,7 @@ public class CleanOrderBo extends BaseEntity {
/**
* 是否退订01
*/
private int isUnbooking;
private Integer isUnbooking;
/**
* 状态

View File

@ -116,7 +116,7 @@ public class CleanOrderVo implements Serializable {
/**
* 是否退订01
*/
private int isUnbooking;
private Integer isUnbooking;
/**
* 联系电话

View File

@ -139,11 +139,12 @@ public class MeetServiceImpl implements IMeetService {
LambdaQueryWrapper<Meet> lqw = Wrappers.lambdaQuery();
lqw.orderByAsc(Meet::getId);
lqw.like(StringUtils.isNotBlank(bo.getName()), Meet::getName, bo.getName());
lqw.eq(StringUtils.isNotBlank(bo.getLocation()), Meet::getLocation, bo.getLocation());
lqw.eq(bo.getPersonNumber() != null, Meet::getPersonNumber, bo.getPersonNumber());
lqw.eq(bo.getBaseService() != null, Meet::getBaseService, bo.getBaseService());
lqw.eq(bo.getBasePrice() != null, Meet::getBasePrice, bo.getBasePrice());
lqw.eq(bo.getAttach() != null, Meet::getAttach, bo.getAttach());
// lqw.eq(StringUtils.isNotBlank(bo.getLocation()), Meet::getLocation, bo.getLocation());
// lqw.eq(bo.getPersonNumber() != null, Meet::getPersonNumber, bo.getPersonNumber());
// lqw.eq(bo.getBaseService() != null, Meet::getBaseService, bo.getBaseService());
// lqw.eq(bo.getBasePrice() != null, Meet::getBasePrice, bo.getBasePrice());
lqw.eq(bo.getPrincipals() != null, Meet::getPrincipals, bo.getPrincipals());
lqw.eq(bo.getStatus() != null, Meet::getStatus, bo.getStatus());
return lqw;
}