获取就职单位去掉强校验
parent
db6e68d7d2
commit
e10a8734d8
|
|
@ -1,6 +1,7 @@
|
||||||
package com.zcloud.basic.info.command.query;
|
package com.zcloud.basic.info.command.query;
|
||||||
|
|
||||||
import com.alibaba.cola.dto.PageResponse;
|
import com.alibaba.cola.dto.PageResponse;
|
||||||
|
import com.jjb.saas.framework.auth.utils.AuthContext;
|
||||||
import com.zcloud.basic.info.command.convertor.UserCorpRecordCoConvertor;
|
import com.zcloud.basic.info.command.convertor.UserCorpRecordCoConvertor;
|
||||||
import com.zcloud.basic.info.dto.UserCorpRecordPageQry;
|
import com.zcloud.basic.info.dto.UserCorpRecordPageQry;
|
||||||
import com.zcloud.basic.info.dto.clientobject.UserCO;
|
import com.zcloud.basic.info.dto.clientobject.UserCO;
|
||||||
|
|
@ -38,6 +39,9 @@ public class UserCorpRecordQueryExe {
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public PageResponse<UserCorpRecordCO> execute(UserCorpRecordPageQry userCorpRecordPageQry) {
|
public PageResponse<UserCorpRecordCO> execute(UserCorpRecordPageQry userCorpRecordPageQry) {
|
||||||
|
if(userCorpRecordPageQry.getEqUserId() == null){
|
||||||
|
userCorpRecordPageQry.setEqUserId(AuthContext.getUserId());
|
||||||
|
}
|
||||||
Map<String, Object> params = PageQueryHelper.toHashMap(userCorpRecordPageQry);
|
Map<String, Object> params = PageQueryHelper.toHashMap(userCorpRecordPageQry);
|
||||||
PageResponse<UserCorpRecordDO> pageResponse = userCorpRecordRepository.listPage(params);
|
PageResponse<UserCorpRecordDO> pageResponse = userCorpRecordRepository.listPage(params);
|
||||||
List<UserCorpRecordCO> examCenterCOS = userCorpRecordCoConvertor.converDOsToCOs(pageResponse.getData());
|
List<UserCorpRecordCO> examCenterCOS = userCorpRecordCoConvertor.converDOsToCOs(pageResponse.getData());
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,8 @@ public class UserCorpRecordPageQry extends PageQuery {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ApiModelProperty("不等于的入职状态,(就职企业传0),1-在职 0-离职, 11-入职待审核, 10-离职待审核")
|
@ApiModelProperty("不等于的入职状态,(就职企业传0),1-在职 0-离职, 11-入职待审核, 10-离职待审核")
|
||||||
@NotNull(message = "状态不能为空")
|
|
||||||
private Integer neEmploymentFlag;
|
private Integer neEmploymentFlag;
|
||||||
|
@ApiModelProperty("用户id")
|
||||||
|
private Long eqUserId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue