|
|
|
@ -60,9 +60,9 @@ public class TbCompanyVerificationController extends BaseController {
|
|
|
|
|
@ApiImplicitParam(name = "beginTime", value = "开始时间", dataType = "Date", dataTypeClass = Date.class),
|
|
|
|
|
@ApiImplicitParam(name = "verificationType", value = "审核类型 1人员背景审核 2重点岗位审查 3业务咨询 4法律咨询", dataType = "String", dataTypeClass = String.class),
|
|
|
|
|
@ApiImplicitParam(name = "readState", value = "读取状态 0已读 1未读", dataType = "String", dataTypeClass = String.class),
|
|
|
|
|
@ApiImplicitParam(name = "companyId", value = "企业id", dataType = "String", dataTypeClass = String.class,required = true)
|
|
|
|
|
@ApiImplicitParam(name = "companyId", value = "企业id", dataType = "Long", dataTypeClass = Long.class,required = true)
|
|
|
|
|
})
|
|
|
|
|
public TableDataInfo list(TbCompanyVerification tbCompanyVerification) {
|
|
|
|
|
public TableDataInfo list(@RequestBody TbCompanyVerification tbCompanyVerification) {
|
|
|
|
|
startPage();
|
|
|
|
|
if(tbCompanyVerification.getBeginTime()!=null&&tbCompanyVerification.getEndTime()!=null){
|
|
|
|
|
if(tbCompanyVerification.getBeginTime().after(tbCompanyVerification.getEndTime())){
|
|
|
|
|