|
|
|
@ -9,6 +9,9 @@ import cn.iocoder.yudao.module.system.dal.dataobject.enterprise.EnterpriseDO;
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.enterprise.vo.*; |
|
|
|
|
|
|
|
|
|
import static cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils.getLoginUser; |
|
|
|
|
import static cn.iocoder.yudao.framework.web.core.util.WebFrameworkUtils.getLoginUserId; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 企业 Mapper |
|
|
|
|
* |
|
|
|
@ -33,7 +36,7 @@ public interface EnterpriseMapper extends BaseMapperX<EnterpriseDO> {
|
|
|
|
|
.eqIfPresent(EnterpriseDO::getGpsLocation, reqVO.getGpsLocation()) |
|
|
|
|
.betweenIfPresent(EnterpriseDO::getCreateTime, reqVO.getCreateTime()) |
|
|
|
|
.eqIfPresent(EnterpriseDO::getUpdater, reqVO.getUpdater()) |
|
|
|
|
.or(w->w.eq(EnterpriseDO::getCreator, reqVO.getCreate())) |
|
|
|
|
// .or(w->w.eq( EnterpriseDO::getCreator, getLoginUserId()))
|
|
|
|
|
.orderByDesc(EnterpriseDO::getId)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|