1
This commit is contained in:
parent
8233524b2b
commit
f9ea62db04
@ -113,7 +113,7 @@ public class CleanOrder extends TenantEntity {
|
|||||||
/**
|
/**
|
||||||
* 是否退订(0:否,1:是)
|
* 是否退订(0:否,1:是)
|
||||||
*/
|
*/
|
||||||
private int isUnbooking;
|
private Integer isUnbooking;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 更新人id
|
* 更新人id
|
||||||
|
@ -114,7 +114,7 @@ public class CleanOrderBo extends BaseEntity {
|
|||||||
/**
|
/**
|
||||||
* 是否退订(0:否,1:是)
|
* 是否退订(0:否,1:是)
|
||||||
*/
|
*/
|
||||||
private int isUnbooking;
|
private Integer isUnbooking;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 状态
|
* 状态
|
||||||
|
@ -116,7 +116,7 @@ public class CleanOrderVo implements Serializable {
|
|||||||
/**
|
/**
|
||||||
* 是否退订(0:否,1:是)
|
* 是否退订(0:否,1:是)
|
||||||
*/
|
*/
|
||||||
private int isUnbooking;
|
private Integer isUnbooking;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 联系电话
|
* 联系电话
|
||||||
|
@ -139,11 +139,12 @@ public class MeetServiceImpl implements IMeetService {
|
|||||||
LambdaQueryWrapper<Meet> lqw = Wrappers.lambdaQuery();
|
LambdaQueryWrapper<Meet> lqw = Wrappers.lambdaQuery();
|
||||||
lqw.orderByAsc(Meet::getId);
|
lqw.orderByAsc(Meet::getId);
|
||||||
lqw.like(StringUtils.isNotBlank(bo.getName()), Meet::getName, bo.getName());
|
lqw.like(StringUtils.isNotBlank(bo.getName()), Meet::getName, bo.getName());
|
||||||
lqw.eq(StringUtils.isNotBlank(bo.getLocation()), Meet::getLocation, bo.getLocation());
|
// lqw.eq(StringUtils.isNotBlank(bo.getLocation()), Meet::getLocation, bo.getLocation());
|
||||||
lqw.eq(bo.getPersonNumber() != null, Meet::getPersonNumber, bo.getPersonNumber());
|
// lqw.eq(bo.getPersonNumber() != null, Meet::getPersonNumber, bo.getPersonNumber());
|
||||||
lqw.eq(bo.getBaseService() != null, Meet::getBaseService, bo.getBaseService());
|
// lqw.eq(bo.getBaseService() != null, Meet::getBaseService, bo.getBaseService());
|
||||||
lqw.eq(bo.getBasePrice() != null, Meet::getBasePrice, bo.getBasePrice());
|
// lqw.eq(bo.getBasePrice() != null, Meet::getBasePrice, bo.getBasePrice());
|
||||||
lqw.eq(bo.getAttach() != null, Meet::getAttach, bo.getAttach());
|
lqw.eq(bo.getPrincipals() != null, Meet::getPrincipals, bo.getPrincipals());
|
||||||
|
lqw.eq(bo.getStatus() != null, Meet::getStatus, bo.getStatus());
|
||||||
return lqw;
|
return lqw;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user