feat:一级口门信息管理

koumen
dearLin 2026-03-09 13:32:34 +08:00
parent 3a8bd3361c
commit 8ab65b0da3
33 changed files with 44 additions and 43 deletions

View File

@ -11,5 +11,6 @@ public interface MkmjPassageCoConvertor {
List<MkmjPassageCO> converDOsToCOs(List<MkmjPassageDO> mkmjPassageDOs);
MkmjPassageCO converDOToCO(MkmjPassageDO mkmjPassageDO);
}
}

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -1,4 +1,4 @@
package com.zcloud.primeport.dto;
package com.zcloud.primeport.dto;
import com.alibaba.cola.dto.Command;
import io.swagger.annotations.ApiModelProperty;

View File

@ -38,12 +38,12 @@ public class MkmjApprovalUserGatewayImpl implements MkmjApprovalUserGateway {
}
@Override
public Boolean deletedMkmjApprovalUserById(String id) {
public Boolean deletedMkmjApprovalUserById(Long id) {
return mkmjApprovalUserRepository.removeById(id);
}
@Override
public Boolean deletedMkmjApprovalUserByIds(String[] ids) {
public Boolean deletedMkmjApprovalUserByIds(Long[] ids) {
return mkmjApprovalUserRepository.removeByIds(Collections.singletonList(ids));
}
}

View File

@ -38,12 +38,12 @@ public class MkmjGateGatewayImpl implements MkmjGateGateway {
}
@Override
public Boolean deletedMkmjGateById(String id) {
public Boolean deletedMkmjGateById(Long id) {
return mkmjGateRepository.removeById(id);
}
@Override
public Boolean deletedMkmjGateByIds(String[] ids) {
public Boolean deletedMkmjGateByIds(Long[] ids) {
return mkmjGateRepository.removeByIds(Collections.singletonList(ids));
}
}

View File

@ -38,12 +38,12 @@ public class PersonApplyGatewayImpl implements PersonApplyGateway {
}
@Override
public Boolean deletedPersonApplyById(String id) {
public Boolean deletedPersonApplyById(Long id) {
return personApplyRepository.removeById(id);
}
@Override
public Boolean deletedPersonApplyByIds(String[] ids) {
public Boolean deletedPersonApplyByIds(Long[] ids) {
return personApplyRepository.removeByIds(Collections.singletonList(ids));
}
}

View File

@ -38,12 +38,12 @@ public class PersonMessageGatewayImpl implements PersonMessageGateway {
}
@Override
public Boolean deletedPersonMessageById(String id) {
public Boolean deletedPersonMessageById(Long id) {
return personMessageRepository.removeById(id);
}
@Override
public Boolean deletedPersonMessageByIds(String[] ids) {
public Boolean deletedPersonMessageByIds(Long[] ids) {
return personMessageRepository.removeByIds(Collections.singletonList(ids));
}
}

View File

@ -38,12 +38,12 @@ public class VehicleApplyGatewayImpl implements VehicleApplyGateway {
}
@Override
public Boolean deletedVehicleApplyById(String id) {
public Boolean deletedVehicleApplyById(Long id) {
return vehicleApplyRepository.removeById(id);
}
@Override
public Boolean deletedVehicleApplyByIds(String[] ids) {
public Boolean deletedVehicleApplyByIds(Long[] ids) {
return vehicleApplyRepository.removeByIds(Collections.singletonList(ids));
}
}

View File

@ -38,12 +38,12 @@ public class VehicleAuditGatewayImpl implements VehicleAuditGateway {
}
@Override
public Boolean deletedVehicleAuditById(String id) {
public Boolean deletedVehicleAuditById(Long id) {
return vehicleAuditRepository.removeById(id);
}
@Override
public Boolean deletedVehicleAuditByIds(String[] ids) {
public Boolean deletedVehicleAuditByIds(Long[] ids) {
return vehicleAuditRepository.removeByIds(Collections.singletonList(ids));
}
}

View File

@ -38,12 +38,12 @@ public class VehicleBlackGatewayImpl implements VehicleBlackGateway {
}
@Override
public Boolean deletedVehicleBlackById(String id) {
public Boolean deletedVehicleBlackById(Long id) {
return vehicleBlackRepository.removeById(id);
}
@Override
public Boolean deletedVehicleBlackByIds(String[] ids) {
public Boolean deletedVehicleBlackByIds(Long[] ids) {
return vehicleBlackRepository.removeByIds(Collections.singletonList(ids));
}
}

View File

@ -38,12 +38,12 @@ public class VehicleMessageGatewayImpl implements VehicleMessageGateway {
}
@Override
public Boolean deletedVehicleMessageById(String id) {
public Boolean deletedVehicleMessageById(Long id) {
return vehicleMessageRepository.removeById(id);
}
@Override
public Boolean deletedVehicleMessageByIds(String[] ids) {
public Boolean deletedVehicleMessageByIds(Long[] ids) {
return vehicleMessageRepository.removeByIds(Collections.singletonList(ids));
}
}

View File

@ -38,12 +38,12 @@ public class VehicleViolationsGatewayImpl implements VehicleViolationsGateway {
}
@Override
public Boolean deletedVehicleViolationsById(String id) {
public Boolean deletedVehicleViolationsById(Long id) {
return vehicleViolationsRepository.removeById(id);
}
@Override
public Boolean deletedVehicleViolationsByIds(String[] ids) {
public Boolean deletedVehicleViolationsByIds(Long[] ids) {
return vehicleViolationsRepository.removeByIds(Collections.singletonList(ids));
}
}

View File

@ -38,12 +38,12 @@ public class VideoGatewayImpl implements VideoGateway {
}
@Override
public Boolean deletedVideoById(String id) {
public Boolean deletedVideoById(Long id) {
return videoRepository.removeById(id);
}
@Override
public Boolean deletedVideoByIds(String[] ids) {
public Boolean deletedVideoByIds(Long[] ids) {
return videoRepository.removeByIds(Collections.singletonList(ids));
}
}