Commit 8a75cb67 authored by 李秀明's avatar 李秀明

Merge branch 'refs/heads/develop_dl' into develop_dl_4.0

# Conflicts: # YeeAmosFireAutoSysService/src/main/java/com/yeejoin/amos/fas/business/service/impl/ContingencyPlanServiceImpl.java # YeeAmosFireAutoSysStart/src/main/resources/db/changelog/fas-2.0.1.xml # YeeAmosFireAutoSysStart/src/main/resources/db/mapper/PlanDetailMapper.xml
parents 6c1313c9 a2e8b014
......@@ -63,6 +63,11 @@ public class Equipment extends BasicEntity {
@Column(name="drain_duration")
private String drainDuration;
/**
* 分类
*/
@Column(name="category")
private String category;
public String getFireTruckRoute() {
return fireTruckRoute;
......
......@@ -40,6 +40,7 @@ import org.springframework.transaction.support.TransactionSynchronization;
import org.springframework.transaction.support.TransactionSynchronizationManager;
import org.springframework.util.CollectionUtils;
import org.springframework.util.ObjectUtils;
import org.springframework.web.bind.annotation.RequestParam;
import org.typroject.tyboot.component.emq.EmqKeeper;
import org.typroject.tyboot.component.emq.EmqxListener;
import org.typroject.tyboot.core.foundation.utils.Bean;
......@@ -693,6 +694,8 @@ public class ContingencyPlanServiceImpl implements IContingencyPlanService {
public Page<PlanDetailVo> pageFilter(Page page, String planName, Long
classifyId, List<String> planRange, String editOrgName, Date implementationTimeLeft, Date
implementationTimeRight, String equipmentId, String category) {
implementationTimeRight,
String equipmentId, String category) {
List<Long> classifyIdList = new ArrayList<>();
if (classifyId != null) {
Collection<PlanClassifyTreeVo> classifyTreeList = planClassifyTreeService.getAllChildIncludeMe(classifyId);
......
......@@ -7,6 +7,7 @@ import com.yeejoin.amos.fas.dao.entity.PlanOperationRecord;
import com.yeejoin.amos.fas.exception.YeeException;
import com.yeejoin.amos.feign.privilege.model.RoleModel;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.Date;
import java.util.HashMap;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment