mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-10 00:40:30 +08:00
chore(v0.11): 全路径纳入版本库与走查整改
- .gitignore:显式放行全部 maven-*、scripts、dev-support、frontend、反1、artifacts、历史导出目录
- 新增跟踪:device-manager/device-sdk/legacy-public、davinci-manager、cwos-*、cwos-resource 等源码与附属资源
- davinci FileStorageManagerImpl:Feign Response 关闭、绝对 URL 拉流 SSRF 校验(协议/主机/解析地址)
- davinci OuterCallFeignClient:补充契约说明
- cwos-common-aks AksConstant:final 类 + 私有构造防误实例化
- device-manager DeviceConstant:沿用 DEFAULT_APPLICATIONID 拼写修正
Made-with: Cursor
Former-commit-id: 0a34c76a82
This commit is contained in:
+91
@@ -0,0 +1,91 @@
|
||||
/* */ package cn.cloudwalk.elevator;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.elevator.util.DateUtils;
|
||||
/* */ import com.google.common.collect.Range;
|
||||
/* */ import java.util.ArrayList;
|
||||
/* */ import java.util.Collection;
|
||||
/* */ import java.util.Date;
|
||||
/* */ import org.apache.shardingsphere.api.sharding.standard.PreciseShardingAlgorithm;
|
||||
/* */ import org.apache.shardingsphere.api.sharding.standard.PreciseShardingValue;
|
||||
/* */ import org.apache.shardingsphere.api.sharding.standard.RangeShardingAlgorithm;
|
||||
/* */ import org.apache.shardingsphere.api.sharding.standard.RangeShardingValue;
|
||||
/* */ import org.springframework.util.CollectionUtils;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class YearlyShardingAlgorithm
|
||||
/* */ implements PreciseShardingAlgorithm<Long>, RangeShardingAlgorithm<Long>
|
||||
/* */ {
|
||||
/* */ public String doSharding(Collection<String> availableTargetNames, PreciseShardingValue<Long> shardingValue) {
|
||||
/* 36 */ Long time = (Long)shardingValue.getValue();
|
||||
/* 37 */ String suffix = DateUtils.formatDate(new Date(time.longValue()), "yyyy");
|
||||
/* 38 */ String logicTableName = shardingValue.getLogicTableName();
|
||||
/* 39 */ String actualTableName = logicTableName + "_" + suffix;
|
||||
/* 40 */ if (!availableTargetNames.contains(actualTableName));
|
||||
/* */
|
||||
/* */
|
||||
/* 43 */ return actualTableName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Collection<String> doSharding(Collection<String> availableTargetNames, RangeShardingValue<Long> shardingValue) {
|
||||
/* 56 */ Collection<String> availables = new ArrayList<>();
|
||||
/* 57 */ Range<Long> valueRange = shardingValue.getValueRange();
|
||||
/* */
|
||||
/* 59 */ if (!CollectionUtils.isEmpty(availableTargetNames)) {
|
||||
/* */
|
||||
/* 61 */ Integer lowerBoundYear = Integer.valueOf(-2147483648);
|
||||
/* 62 */ Integer upperBoundYear = Integer.valueOf(2147483647);
|
||||
/* */
|
||||
/* 64 */ if (valueRange.hasLowerBound()) {
|
||||
/* 65 */ lowerBoundYear = Integer.valueOf(Integer.parseInt(DateUtils.formatDate(new Date(((Long)valueRange.lowerEndpoint()).longValue()), "YYYY")));
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* 69 */ if (valueRange.hasUpperBound()) {
|
||||
/* 70 */ upperBoundYear = Integer.valueOf(Integer.parseInt(DateUtils.formatDate(new Date(((Long)valueRange.upperEndpoint()).longValue()), "YYYY")));
|
||||
/* */ }
|
||||
/* */
|
||||
/* 73 */ for (String targetTable : availableTargetNames) {
|
||||
/* 74 */ Integer tableNameSuffix = Integer.valueOf(Integer.parseInt(targetTable.substring(targetTable.lastIndexOf('_') + 1, targetTable
|
||||
/* 75 */ .lastIndexOf('_') + 5)));
|
||||
/* 76 */ if (tableNameSuffix.compareTo(lowerBoundYear) < 0 || tableNameSuffix.compareTo(upperBoundYear) > 0) {
|
||||
/* */ continue;
|
||||
/* */ }
|
||||
/* 79 */ availables.add(targetTable);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* 83 */ return availables;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\YearlyShardingAlgorithm.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
package cn.cloudwalk.elevator.codeElevatorArea.dao;
|
||||
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeDTO;
|
||||
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeResultDTO;
|
||||
|
||||
public interface AcsElevatorCodeDao {
|
||||
Integer insertNew(AcsElevatorCodeDTO paramAcsElevatorCodeDTO) throws ServiceException;
|
||||
|
||||
Integer updateOld(AcsElevatorCodeDTO paramAcsElevatorCodeDTO) throws ServiceException;
|
||||
|
||||
AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
|
||||
|
||||
AcsElevatorCodeResultDTO getFirstByParentId(String paramString);
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\dao\AcsElevatorCodeDao.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+74
@@ -0,0 +1,74 @@
|
||||
/* */ package cn.cloudwalk.elevator.codeElevatorArea.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorCodeDTO
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private String zoneId;
|
||||
/* */ private String code;
|
||||
/* */ private String parentId;
|
||||
/* */ private Integer isFirst;
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 38 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneId(String zoneId) {
|
||||
/* 42 */ this.zoneId = zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCode() {
|
||||
/* 46 */ return this.code;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCode(String code) {
|
||||
/* 50 */ this.code = code;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getIsFirst() {
|
||||
/* 54 */ return this.isFirst;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsFirst(Integer isFirst) {
|
||||
/* 58 */ this.isFirst = isFirst;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getParentId() {
|
||||
/* 62 */ return this.parentId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setParentId(String parentId) {
|
||||
/* 66 */ this.parentId = parentId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\dto\AcsElevatorCodeDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
/* */ package cn.cloudwalk.elevator.codeElevatorArea.dto;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorCodeQueryDTO
|
||||
/* */ {
|
||||
/* */ private String zoneId;
|
||||
/* */ private String id;
|
||||
/* */ private String zoneName;
|
||||
/* */ private String zoneType;
|
||||
/* */ private String code;
|
||||
/* */ private Integer isFirst;
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 49 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneId(String zoneId) {
|
||||
/* 53 */ this.zoneId = zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCode() {
|
||||
/* 57 */ return this.code;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCode(String code) {
|
||||
/* 61 */ this.code = code;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getZoneName() {
|
||||
/* 65 */ return this.zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneName(String zoneName) {
|
||||
/* 69 */ this.zoneName = zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getZoneType() {
|
||||
/* 73 */ return this.zoneType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneType(String zoneType) {
|
||||
/* 77 */ this.zoneType = zoneType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 81 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 85 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getIsFirst() {
|
||||
/* 89 */ return this.isFirst;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsFirst(Integer isFirst) {
|
||||
/* 93 */ this.isFirst = isFirst;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\dto\AcsElevatorCodeQueryDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
/* */ package cn.cloudwalk.elevator.codeElevatorArea.dto;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorCodeResultDTO
|
||||
/* */ {
|
||||
/* */ private String zoneId;
|
||||
/* */ private String code;
|
||||
/* */ private Integer isFirst;
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 25 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneId(String zoneId) {
|
||||
/* 29 */ this.zoneId = zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCode() {
|
||||
/* 33 */ return this.code;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCode(String code) {
|
||||
/* 37 */ this.code = code;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getIsFirst() {
|
||||
/* 41 */ return this.isFirst;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsFirst(Integer isFirst) {
|
||||
/* 45 */ this.isFirst = isFirst;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\dto\AcsElevatorCodeResultDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
/* */ package cn.cloudwalk.elevator.codeElevatorArea.impl;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
/* */ import cn.cloudwalk.elevator.codeElevatorArea.dao.AcsElevatorCodeDao;
|
||||
/* */ import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeDTO;
|
||||
/* */ import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeResultDTO;
|
||||
/* */ import cn.cloudwalk.elevator.codeElevatorArea.mapper.AcsElevatorCodeMapper;
|
||||
/* */ import javax.annotation.Resource;
|
||||
/* */ import org.springframework.stereotype.Repository;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ @Repository
|
||||
/* */ public class AcsElevatorCodeDaoImpl
|
||||
/* */ implements AcsElevatorCodeDao
|
||||
/* */ {
|
||||
/* */ @Resource
|
||||
/* */ private AcsElevatorCodeMapper acsElevatorCodeMapper;
|
||||
/* */
|
||||
/* */ public Integer insertNew(AcsElevatorCodeDTO dto) throws ServiceException {
|
||||
/* 23 */ return Integer.valueOf(this.acsElevatorCodeMapper.insertNew(dto));
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer updateOld(AcsElevatorCodeDTO dto) throws ServiceException {
|
||||
/* 29 */ return Integer.valueOf(this.acsElevatorCodeMapper.updateOld(dto));
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO dto) {
|
||||
/* 34 */ return this.acsElevatorCodeMapper.get(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public AcsElevatorCodeResultDTO getFirstByParentId(String parentId) {
|
||||
/* 39 */ return this.acsElevatorCodeMapper.getFirstByParentId(parentId);
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\impl\AcsElevatorCodeDaoImpl.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
package cn.cloudwalk.elevator.codeElevatorArea.mapper;
|
||||
|
||||
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeDTO;
|
||||
import cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeResultDTO;
|
||||
|
||||
public interface AcsElevatorCodeMapper {
|
||||
AcsElevatorCodeResultDTO get(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
|
||||
|
||||
int insertNew(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
|
||||
|
||||
int updateOld(AcsElevatorCodeDTO paramAcsElevatorCodeDTO);
|
||||
|
||||
AcsElevatorCodeResultDTO getFirstByParentId(String paramString);
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\codeElevatorArea\mapper\AcsElevatorCodeMapper.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.cloudwalk.elevator.codeElevatorArea.mapper.AcsElevatorCodeMapper">
|
||||
|
||||
|
||||
<insert id="insertNew" parameterType="cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeDTO">
|
||||
insert into code_elevator_area (zone_id, code, create_time, last_update_time,is_first,parent_id)
|
||||
values (#{zoneId,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR},
|
||||
#{createTime,jdbcType=BIGINT},
|
||||
#{lastUpdateTime,jdbcType=BIGINT},#{isFirst,jdbcType=TINYINT}, #{parentId,jdbcType=VARCHAR})
|
||||
</insert>
|
||||
|
||||
|
||||
<select id="get" resultType="cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeResultDTO">
|
||||
SELECT zone_id AS zoneId,code,is_first AS isFirst
|
||||
FROM code_elevator_area
|
||||
WHERE zone_id = #{zoneId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
<select id="getFirstByParentId"
|
||||
resultType="cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeResultDTO">
|
||||
SELECT zone_id AS zoneId,code,is_first AS isFirst
|
||||
FROM code_elevator_area
|
||||
WHERE parent_id = #{parentId,jdbcType=VARCHAR}
|
||||
and is_first = 1
|
||||
</select>
|
||||
|
||||
|
||||
<update id="updateOld" parameterType="cn.cloudwalk.elevator.codeElevatorArea.dto.AcsElevatorCodeDTO">
|
||||
update code_elevator_area
|
||||
<trim prefix="set" suffixOverrides=",">
|
||||
<if test="lastUpdateTime != null">
|
||||
last_update_time = #{lastUpdateTime, jdbcType=BIGINT},
|
||||
</if>
|
||||
|
||||
<if test="code != null">
|
||||
code = #{code, jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="isFirst != null">
|
||||
is_first = #{isFirst, jdbcType=TINYINT},
|
||||
</if>
|
||||
</trim>
|
||||
<where>
|
||||
zone_id = #{zoneId, jdbcType=VARCHAR}
|
||||
</where>
|
||||
</update>
|
||||
|
||||
|
||||
|
||||
</mapper>
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
package cn.cloudwalk.elevator.device.dao;
|
||||
|
||||
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskAddDto;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskDTO;
|
||||
|
||||
public interface AcsDeviceTaskDao {
|
||||
Integer insert(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
|
||||
|
||||
Integer updateBingDevices(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
|
||||
|
||||
Integer updateIsStop(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
|
||||
|
||||
AcsDeviceTaskDTO getById(String paramString);
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dao\AcsDeviceTaskDao.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
package cn.cloudwalk.elevator.device.dao;
|
||||
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceAddDTO;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceEditDTO;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListByBuildingIdDto;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListDto;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryByIdDTO;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryDTO;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceResultDTO;
|
||||
import java.util.List;
|
||||
|
||||
public interface AcsElevatorDeviceDao {
|
||||
Integer add(AcsElevatorDeviceAddDTO paramAcsElevatorDeviceAddDTO) throws DataAccessException;
|
||||
|
||||
Integer edit(AcsElevatorDeviceEditDTO paramAcsElevatorDeviceEditDTO) throws DataAccessException;
|
||||
|
||||
Integer delete(List<String> paramList) throws DataAccessException;
|
||||
|
||||
CloudwalkPageAble<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
|
||||
|
||||
List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto) throws DataAccessException;
|
||||
|
||||
List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto) throws DataAccessException;
|
||||
|
||||
List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto paramAcsElevatorDeviceListByBuildingIdDto) throws DataAccessException;
|
||||
|
||||
List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO) throws ServiceException;
|
||||
|
||||
AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO paramAcsElevatorDeviceQueryByIdDTO) throws ServiceException;
|
||||
|
||||
AcsElevatorDeviceResultDTO getByDeciveCode(String paramString) throws ServiceException;
|
||||
|
||||
String getBuildingId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO) throws ServiceException;
|
||||
|
||||
String getBusinessId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO) throws ServiceException;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dao\AcsElevatorDeviceDao.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package cn.cloudwalk.elevator.device.dao;
|
||||
|
||||
import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
|
||||
public interface DeviceImageStoreDao {
|
||||
Boolean save(String paramString1, String paramString2) throws ServiceException;
|
||||
|
||||
String getByBuildingId(String paramString) throws ServiceException;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dao\DeviceImageStoreDao.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+154
@@ -0,0 +1,154 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsDeviceQueryDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = -9107652629099620576L;
|
||||
/* */ private String id;
|
||||
/* */ private List<String> ids;
|
||||
/* */ private String businessId;
|
||||
/* */ private String deviceId;
|
||||
/* */ private List<String> deviceIds;
|
||||
/* */ private String deviceCode;
|
||||
/* */ private String parentDeviceId;
|
||||
/* */ private List<String> parentDeviceIds;
|
||||
/* */ private Integer openStatus;
|
||||
/* */ private Integer queryParent;
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 70 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 74 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIds() {
|
||||
/* 78 */ return this.ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIds(List<String> ids) {
|
||||
/* 82 */ this.ids = ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 86 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 90 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 94 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 98 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getDeviceIds() {
|
||||
/* 102 */ return this.deviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceIds(List<String> deviceIds) {
|
||||
/* 106 */ this.deviceIds = deviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 110 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 114 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getParentDeviceId() {
|
||||
/* 118 */ return this.parentDeviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setParentDeviceId(String parentDeviceId) {
|
||||
/* 122 */ this.parentDeviceId = parentDeviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getParentDeviceIds() {
|
||||
/* 126 */ return this.parentDeviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setParentDeviceIds(List<String> parentDeviceIds) {
|
||||
/* 130 */ this.parentDeviceIds = parentDeviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getQueryParent() {
|
||||
/* 134 */ return this.queryParent;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setQueryParent(Integer queryParent) {
|
||||
/* 138 */ this.queryParent = queryParent;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getOpenStatus() {
|
||||
/* 142 */ return this.openStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOpenStatus(Integer openStatus) {
|
||||
/* 146 */ this.openStatus = openStatus;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsDeviceQueryDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+116
@@ -0,0 +1,116 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsDeviceResultDTO
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = 6868258119634367362L;
|
||||
/* */ private String id;
|
||||
/* */ private String businessId;
|
||||
/* */ private String deviceId;
|
||||
/* */ private String deviceCode;
|
||||
/* */ private String parentDeviceId;
|
||||
/* */ private String imageStoreId;
|
||||
/* */ private Integer openStatus;
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 55 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 60 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 64 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 68 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 72 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 76 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 80 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 84 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getParentDeviceId() {
|
||||
/* 88 */ return this.parentDeviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setParentDeviceId(String parentDeviceId) {
|
||||
/* 92 */ this.parentDeviceId = parentDeviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 96 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 100 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getOpenStatus() {
|
||||
/* 104 */ return this.openStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOpenStatus(Integer openStatus) {
|
||||
/* 108 */ this.openStatus = openStatus;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsDeviceResultDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+62
@@ -0,0 +1,62 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsDeviceTaskAddDto
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = 6909321999650444051L;
|
||||
/* */ private Integer allDevices;
|
||||
/* */ private Integer bindDevices;
|
||||
/* */ private Integer isStop;
|
||||
/* */
|
||||
/* */ public Integer getAllDevices() {
|
||||
/* 34 */ return this.allDevices;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAllDevices(Integer allDevices) {
|
||||
/* 38 */ this.allDevices = allDevices;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getBindDevices() {
|
||||
/* 42 */ return this.bindDevices;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBindDevices(Integer bindDevices) {
|
||||
/* 46 */ this.bindDevices = bindDevices;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getIsStop() {
|
||||
/* 50 */ return this.isStop;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsStop(Integer isStop) {
|
||||
/* 54 */ this.isStop = isStop;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsDeviceTaskAddDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+75
@@ -0,0 +1,75 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsDeviceTaskDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = -3746361327881264974L;
|
||||
/* */ private String id;
|
||||
/* */ private Integer allDevices;
|
||||
/* */ private Integer bindDevices;
|
||||
/* */ private Integer isStop;
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 39 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 43 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getAllDevices() {
|
||||
/* 47 */ return this.allDevices;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAllDevices(Integer allDevices) {
|
||||
/* 51 */ this.allDevices = allDevices;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getBindDevices() {
|
||||
/* 55 */ return this.bindDevices;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBindDevices(Integer bindDevices) {
|
||||
/* 59 */ this.bindDevices = bindDevices;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getIsStop() {
|
||||
/* 63 */ return this.isStop;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsStop(Integer isStop) {
|
||||
/* 67 */ this.isStop = isStop;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsDeviceTaskDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+228
@@ -0,0 +1,228 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorDeviceAddDTO
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private String businessId;
|
||||
/* */ private String deviceId;
|
||||
/* */ private String deviceCode;
|
||||
/* */ private String deviceName;
|
||||
/* */ private String deviceTypeName;
|
||||
/* */ private String elevatorFloorList;
|
||||
/* */ private String currentFloorId;
|
||||
/* */ private String currentFloor;
|
||||
/* */ private String currentBuilding;
|
||||
/* */ private String currentBuildingId;
|
||||
/* */ private String areaName;
|
||||
/* */ private Integer status;
|
||||
/* */ private Integer deleteFlag;
|
||||
/* */ private String areaId;
|
||||
/* */ private String elevatorFloorIdList;
|
||||
/* */
|
||||
/* */ public String getElevatorFloorIdList() {
|
||||
/* 98 */ return this.elevatorFloorIdList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setElevatorFloorIdList(String elevatorFloorIdList) {
|
||||
/* 102 */ this.elevatorFloorIdList = elevatorFloorIdList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCurrentBuildingId() {
|
||||
/* 106 */ return this.currentBuildingId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCurrentBuildingId(String currentBuildingId) {
|
||||
/* 110 */ this.currentBuildingId = currentBuildingId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaId() {
|
||||
/* 114 */ return this.areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaId(String areaId) {
|
||||
/* 118 */ this.areaId = areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 122 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 126 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 130 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 134 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 138 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 142 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 146 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 150 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeName() {
|
||||
/* 154 */ return this.deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeName(String deviceTypeName) {
|
||||
/* 158 */ this.deviceTypeName = deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getElevatorFloorList() {
|
||||
/* 162 */ return this.elevatorFloorList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setElevatorFloorList(String elevatorFloorList) {
|
||||
/* 166 */ this.elevatorFloorList = elevatorFloorList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCurrentFloorId() {
|
||||
/* 170 */ return this.currentFloorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCurrentFloorId(String currentFloorId) {
|
||||
/* 174 */ this.currentFloorId = currentFloorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCurrentFloor() {
|
||||
/* 178 */ return this.currentFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCurrentFloor(String currentFloor) {
|
||||
/* 182 */ this.currentFloor = currentFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCurrentBuilding() {
|
||||
/* 186 */ return this.currentBuilding;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCurrentBuilding(String currentBuilding) {
|
||||
/* 190 */ this.currentBuilding = currentBuilding;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaName() {
|
||||
/* 194 */ return this.areaName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaName(String areaName) {
|
||||
/* 198 */ this.areaName = areaName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getStatus() {
|
||||
/* 202 */ return this.status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStatus(Integer status) {
|
||||
/* 206 */ this.status = status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getDeleteFlag() {
|
||||
/* 210 */ return this.deleteFlag;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeleteFlag(Integer deleteFlag) {
|
||||
/* 214 */ this.deleteFlag = deleteFlag;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String toString() {
|
||||
/* 220 */ return "AcsElevatorDeviceAddDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceName='" + this.deviceName + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", elevatorFloorList='" + this.elevatorFloorList + '\'' + ", currentFloorId='" + this.currentFloorId + '\'' + ", currentFloor='" + this.currentFloor + '\'' + ", currentBuilding='" + this.currentBuilding + '\'' + ", areaName='" + this.areaName + '\'' + ", status=" + this.status + ", deleteFlag=" + this.deleteFlag + '}';
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceAddDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+123
@@ -0,0 +1,123 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorDeviceEditDTO
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = 885170301572808321L;
|
||||
/* */ private String elevatorFloorList;
|
||||
/* */ private String currentFloorId;
|
||||
/* */ private String currentFloor;
|
||||
/* */ private String currentBuilding;
|
||||
/* */ private String currentBuildingId;
|
||||
/* */ private String areaId;
|
||||
/* */ private String elevatorFloorIdList;
|
||||
/* */
|
||||
/* */ public String getElevatorFloorIdList() {
|
||||
/* 57 */ return this.elevatorFloorIdList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setElevatorFloorIdList(String elevatorFloorIdList) {
|
||||
/* 61 */ this.elevatorFloorIdList = elevatorFloorIdList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaId() {
|
||||
/* 65 */ return this.areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaId(String areaId) {
|
||||
/* 69 */ this.areaId = areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getElevatorFloorList() {
|
||||
/* 74 */ return this.elevatorFloorList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setElevatorFloorList(String elevatorFloorList) {
|
||||
/* 78 */ this.elevatorFloorList = elevatorFloorList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCurrentFloorId() {
|
||||
/* 82 */ return this.currentFloorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCurrentFloorId(String currentFloorId) {
|
||||
/* 86 */ this.currentFloorId = currentFloorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCurrentFloor() {
|
||||
/* 90 */ return this.currentFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCurrentFloor(String currentFloor) {
|
||||
/* 94 */ this.currentFloor = currentFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCurrentBuilding() {
|
||||
/* 98 */ return this.currentBuilding;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCurrentBuilding(String currentBuilding) {
|
||||
/* 102 */ this.currentBuilding = currentBuilding;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCurrentBuildingId() {
|
||||
/* 106 */ return this.currentBuildingId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCurrentBuildingId(String currentBuildingId) {
|
||||
/* 110 */ this.currentBuildingId = currentBuildingId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String toString() {
|
||||
/* 115 */ return "AcsElevatorDeciveEditDTO{elevatorFloorList='" + this.elevatorFloorList + '\'' + ", currentFloorId='" + this.currentFloorId + '\'' + ", currentFloor='" + this.currentFloor + '\'' + ", currentBuilding='" + this.currentBuilding + '\'' + ", currentBuildingId='" + this.currentBuildingId + '\'' + '}';
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceEditDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+34
@@ -0,0 +1,34 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorDeviceListByBuildingIdDto
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private String businessId;
|
||||
/* */ private String currentBuildingId;
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 15 */ this.businessId = businessId; } public void setCurrentBuildingId(String currentBuildingId) { this.currentBuildingId = currentBuildingId; } public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof AcsElevatorDeviceListByBuildingIdDto)) return false; AcsElevatorDeviceListByBuildingIdDto other = (AcsElevatorDeviceListByBuildingIdDto)o; if (!other.canEqual(this)) return false; Object this$businessId = getBusinessId(), other$businessId = other.getBusinessId(); if ((this$businessId == null) ? (other$businessId != null) : !this$businessId.equals(other$businessId)) return false; Object this$currentBuildingId = getCurrentBuildingId(), other$currentBuildingId = other.getCurrentBuildingId(); return !((this$currentBuildingId == null) ? (other$currentBuildingId != null) : !this$currentBuildingId.equals(other$currentBuildingId)); } protected boolean canEqual(Object other) { return other instanceof AcsElevatorDeviceListByBuildingIdDto; } public int hashCode() { int PRIME = 59; result = 1; Object $businessId = getBusinessId(); result = result * 59 + (($businessId == null) ? 43 : $businessId.hashCode()); Object $currentBuildingId = getCurrentBuildingId(); return result * 59 + (($currentBuildingId == null) ? 43 : $currentBuildingId.hashCode()); } public String toString() { return "AcsElevatorDeviceListByBuildingIdDto(businessId=" + getBusinessId() + ", currentBuildingId=" + getCurrentBuildingId() + ")"; }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 21 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getCurrentBuildingId() {
|
||||
/* 26 */ return this.currentBuildingId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceListByBuildingIdDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+59
@@ -0,0 +1,59 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorDeviceListDto
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private String businessId;
|
||||
/* */ private String currentFloorId;
|
||||
/* */ private List<String> currentFloorIds;
|
||||
/* */
|
||||
/* */ public List<String> getCurrentFloorIds() {
|
||||
/* 31 */ return this.currentFloorIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCurrentFloorIds(List<String> currentFloorIds) {
|
||||
/* 35 */ this.currentFloorIds = currentFloorIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 39 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 43 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCurrentFloorId() {
|
||||
/* 47 */ return this.currentFloorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCurrentFloorId(String currentFloorId) {
|
||||
/* 51 */ this.currentFloorId = currentFloorId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceListDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+181
File diff suppressed because one or more lines are too long
+35
@@ -0,0 +1,35 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorDeviceQueryByIdDTO
|
||||
/* */ extends CloudwalkBasePageForm
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private String id;
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 22 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 27 */ this.id = id;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceQueryByIdDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+148
@@ -0,0 +1,148 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorDeviceQueryDTO
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = -761586737506722816L;
|
||||
/* */ private String areaName;
|
||||
/* */ private String deviceCode;
|
||||
/* */ private String deviceName;
|
||||
/* */ private String deviceTypeName;
|
||||
/* */ private List<String> areaIds;
|
||||
/* */ private String deviceId;
|
||||
/* */ private String businessId;
|
||||
/* */ private String ip;
|
||||
/* */ private Integer status;
|
||||
/* */ private Integer onlineStatus;
|
||||
/* */
|
||||
/* */ public String getIp() {
|
||||
/* 64 */ return this.ip;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIp(String ip) {
|
||||
/* 68 */ this.ip = ip;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getStatus() {
|
||||
/* 72 */ return this.status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStatus(Integer status) {
|
||||
/* 76 */ this.status = status;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getOnlineStatus() {
|
||||
/* 80 */ return this.onlineStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOnlineStatus(Integer onlineStatus) {
|
||||
/* 84 */ this.onlineStatus = onlineStatus;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 88 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 92 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 96 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 100 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getAreaIds() {
|
||||
/* 104 */ return this.areaIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaIds(List<String> areaIds) {
|
||||
/* 108 */ this.areaIds = areaIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaName() {
|
||||
/* 112 */ return this.areaName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaName(String areaName) {
|
||||
/* 116 */ this.areaName = areaName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 120 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 124 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 128 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 132 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeName() {
|
||||
/* 136 */ return this.deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeName(String deviceTypeName) {
|
||||
/* 140 */ this.deviceTypeName = deviceTypeName;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceQueryDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+92
File diff suppressed because one or more lines are too long
+36
@@ -0,0 +1,36 @@
|
||||
package cn.cloudwalk.elevator.device.dto;
|
||||
|
||||
import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AcsElevatorDeviceQueryResultDTO extends CloudwalkBaseTimes implements Serializable {
|
||||
private static final long serialVersionUID = -761586737506722816L;
|
||||
|
||||
private String businessId;
|
||||
|
||||
private String deviceId;
|
||||
|
||||
private String deviceCode;
|
||||
|
||||
private String deviceName;
|
||||
|
||||
private String deviceTypeName;
|
||||
|
||||
private String elevatorFloorList;
|
||||
|
||||
private String currentFloorId;
|
||||
|
||||
private String currentFloor;
|
||||
|
||||
private String currentBuilding;
|
||||
|
||||
private String currentBuildingId;
|
||||
|
||||
private Integer status;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\dto\AcsElevatorDeviceQueryResultDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+261
File diff suppressed because one or more lines are too long
+52
@@ -0,0 +1,52 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.impl;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.elevator.device.dao.AcsDeviceTaskDao;
|
||||
/* */ import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskAddDto;
|
||||
/* */ import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskDTO;
|
||||
/* */ import cn.cloudwalk.elevator.device.mapper.AcsDeviceTaskMapper;
|
||||
/* */ import org.springframework.beans.factory.annotation.Autowired;
|
||||
/* */ import org.springframework.stereotype.Repository;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ @Repository
|
||||
/* */ public class AcsDeviceTaskDaoImpl
|
||||
/* */ implements AcsDeviceTaskDao
|
||||
/* */ {
|
||||
/* */ @Autowired
|
||||
/* */ private AcsDeviceTaskMapper acsDeviceTaskMapper;
|
||||
/* */
|
||||
/* */ public Integer insert(AcsDeviceTaskAddDto dto) {
|
||||
/* 29 */ return this.acsDeviceTaskMapper.insert(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer updateBingDevices(AcsDeviceTaskAddDto dto) {
|
||||
/* 34 */ return this.acsDeviceTaskMapper.updateBingDevices(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer updateIsStop(AcsDeviceTaskAddDto dto) {
|
||||
/* 39 */ return this.acsDeviceTaskMapper.updateIsStop(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public AcsDeviceTaskDTO getById(String taskId) {
|
||||
/* 44 */ return this.acsDeviceTaskMapper.getById(taskId);
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\impl\AcsDeviceTaskDaoImpl.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+185
@@ -0,0 +1,185 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.impl;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
/* */ import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
/* */ import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
/* */ import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
/* */ import cn.cloudwalk.cloud.utils.BeanCopyUtils;
|
||||
/* */ import cn.cloudwalk.elevator.device.dao.AcsElevatorDeviceDao;
|
||||
/* */ import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceAddDTO;
|
||||
/* */ import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceEditDTO;
|
||||
/* */ import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListByBuildingIdDto;
|
||||
/* */ import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListDto;
|
||||
/* */ import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryByIdDTO;
|
||||
/* */ import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryDTO;
|
||||
/* */ import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceResultDTO;
|
||||
/* */ import cn.cloudwalk.elevator.device.mapper.AcsElevatorDeviceMapper;
|
||||
/* */ import com.github.pagehelper.Page;
|
||||
/* */ import com.github.pagehelper.PageHelper;
|
||||
/* */ import java.util.List;
|
||||
/* */ import javax.annotation.Resource;
|
||||
/* */ import org.slf4j.Logger;
|
||||
/* */ import org.slf4j.LoggerFactory;
|
||||
/* */ import org.springframework.stereotype.Repository;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ @Repository
|
||||
/* */ public class AcsElevatorDeviceDaoImpl
|
||||
/* */ implements AcsElevatorDeviceDao
|
||||
/* */ {
|
||||
/* */ @Resource
|
||||
/* */ private AcsElevatorDeviceMapper acsElevatorDeviceMapper;
|
||||
/* 36 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer add(AcsElevatorDeviceAddDTO dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 47 */ return Integer.valueOf(this.acsElevatorDeviceMapper.add(dto));
|
||||
/* 48 */ } catch (Exception e) {
|
||||
/* 49 */ this.logger.error("保存派梯设备信息失败,原因:", e);
|
||||
/* 50 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer edit(AcsElevatorDeviceEditDTO dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 63 */ return Integer.valueOf(this.acsElevatorDeviceMapper.edit(dto));
|
||||
/* 64 */ } catch (Exception e) {
|
||||
/* 65 */ this.logger.error("保存派梯设备信息失败,原因:", e);
|
||||
/* 66 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer delete(List<String> ids) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 79 */ return Integer.valueOf(this.acsElevatorDeviceMapper.delete(ids));
|
||||
/* 80 */ } catch (Exception e) {
|
||||
/* 81 */ this.logger.error("删除派梯设备信息失败,原因:", e);
|
||||
/* 82 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public CloudwalkPageAble<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO dto, CloudwalkPageInfo page) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 97 */ PageHelper.startPage(page.getCurrentPage(), page.getPageSize());
|
||||
/* 98 */ Page<AcsElevatorDeviceResultDTO> result = (Page<AcsElevatorDeviceResultDTO>)this.acsElevatorDeviceMapper.page(dto);
|
||||
/* 99 */ return new CloudwalkPageAble(BeanCopyUtils.copy(result.getResult(), AcsElevatorDeviceResultDTO.class), page, result
|
||||
/* 100 */ .getTotal());
|
||||
/* 101 */ } catch (Exception e) {
|
||||
/* 102 */ this.logger.error("设备分页查询失败,原因:", e);
|
||||
/* 103 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 111 */ return this.acsElevatorDeviceMapper.listByZoneId(dto);
|
||||
/* 112 */ } catch (Exception e) {
|
||||
/* 113 */ this.logger.error("根据楼层id获取设备信息失败,原因:", e);
|
||||
/* 114 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 121 */ return this.acsElevatorDeviceMapper.listByZoneIds(dto);
|
||||
/* 122 */ } catch (Exception e) {
|
||||
/* 123 */ this.logger.error("根据楼层id集合获取设备信息失败,原因:", e);
|
||||
/* 124 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 132 */ return this.acsElevatorDeviceMapper.listBuBuildingId(dto);
|
||||
/* 133 */ } catch (Exception e) {
|
||||
/* 134 */ this.logger.error("根据楼栋id获取设备信息失败,原因:", e);
|
||||
/* 135 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
|
||||
/* 142 */ return this.acsElevatorDeviceMapper.get(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO dto) throws ServiceException {
|
||||
/* 148 */ return this.acsElevatorDeviceMapper.getById(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public AcsElevatorDeviceResultDTO getByDeciveCode(String deviceCode) throws ServiceException {
|
||||
/* 153 */ AcsElevatorDeviceQueryDTO dto = new AcsElevatorDeviceQueryDTO();
|
||||
/* 154 */ dto.setDeviceCode(deviceCode);
|
||||
/* 155 */ return this.acsElevatorDeviceMapper.getByDeciveCode(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getBuildingId(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
|
||||
/* 166 */ return this.acsElevatorDeviceMapper.getBuildingId(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getBusinessId(AcsElevatorDeviceQueryDTO dto) throws ServiceException {
|
||||
/* 177 */ return this.acsElevatorDeviceMapper.getBusinessId(dto);
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\impl\AcsElevatorDeviceDaoImpl.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+49
@@ -0,0 +1,49 @@
|
||||
/* */ package cn.cloudwalk.elevator.device.impl;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.exception.ServiceException;
|
||||
/* */ import cn.cloudwalk.elevator.device.dao.DeviceImageStoreDao;
|
||||
/* */ import cn.cloudwalk.elevator.device.mapper.DeviceImageStoreMapper;
|
||||
/* */ import javax.annotation.Resource;
|
||||
/* */ import org.springframework.stereotype.Repository;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ @Repository
|
||||
/* */ public class DeviceImageStoreDaoImpl
|
||||
/* */ implements DeviceImageStoreDao
|
||||
/* */ {
|
||||
/* */ @Resource
|
||||
/* */ private DeviceImageStoreMapper deviceImageStoreMapper;
|
||||
/* */
|
||||
/* */ public Boolean save(String buildingId, String imageStoreId) throws ServiceException {
|
||||
/* 30 */ return this.deviceImageStoreMapper.save(buildingId, imageStoreId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getByBuildingId(String buildingId) throws ServiceException {
|
||||
/* 41 */ return this.deviceImageStoreMapper.getByBuildingId(buildingId);
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\impl\DeviceImageStoreDaoImpl.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
package cn.cloudwalk.elevator.device.mapper;
|
||||
|
||||
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskAddDto;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsDeviceTaskDTO;
|
||||
|
||||
public interface AcsDeviceTaskMapper {
|
||||
Integer insert(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
|
||||
|
||||
Integer updateBingDevices(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
|
||||
|
||||
Integer updateIsStop(AcsDeviceTaskAddDto paramAcsDeviceTaskAddDto);
|
||||
|
||||
AcsDeviceTaskDTO getById(String paramString);
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\mapper\AcsDeviceTaskMapper.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.cloudwalk.elevator.device.mapper.AcsDeviceTaskMapper">
|
||||
<resultMap id="resultMap" type="cn.cloudwalk.elevator.device.dto.AcsDeviceTaskDTO">
|
||||
<id column="ID" jdbcType="VARCHAR" property="id"/>
|
||||
<result column="ALL_DEVICES" jdbcType="TINYINT" property="allDevices" />
|
||||
<result column="BIND_DEVICES" jdbcType="TINYINT" property="bindDevices" />
|
||||
<result column="IS_STOP" jdbcType="TINYINT" property="isStop" />
|
||||
</resultMap>
|
||||
<insert id="insert" parameterType="cn.cloudwalk.elevator.device.dto.AcsDeviceTaskAddDto">
|
||||
insert into it_acs_device_task (ID, ALL_DEVICES, BIND_DEVICES, IS_STOP)
|
||||
values (#{id,jdbcType=VARCHAR}, #{allDevices,jdbcType=TINYINT}, #{bindDevices,jdbcType=TINYINT}, #{isStop,jdbcType=TINYINT})
|
||||
</insert>
|
||||
|
||||
<update id="updateBingDevices">
|
||||
update it_acs_device_task
|
||||
<set>
|
||||
BIND_DEVICES = #{bindDevices,jdbcType=TINYINT},
|
||||
</set>
|
||||
<where>
|
||||
<if test="id != null and id != ''">
|
||||
and ID = #{id,jdbcType=VARCHAR}
|
||||
</if>
|
||||
</where>
|
||||
</update>
|
||||
|
||||
<update id="updateIsStop">
|
||||
update it_acs_device_task
|
||||
<set>
|
||||
IS_STOP = #{isStop,jdbcType=TINYINT},
|
||||
</set>
|
||||
<where>
|
||||
<if test="id != null and id != ''">
|
||||
and ID = #{id,jdbcType=VARCHAR}
|
||||
</if>
|
||||
</where>
|
||||
</update>
|
||||
|
||||
<select id="getById" resultMap="resultMap">
|
||||
select ID, ALL_DEVICES, BIND_DEVICES,IS_STOP
|
||||
from it_acs_device_task
|
||||
WHERE ID = #{taskId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
package cn.cloudwalk.elevator.device.mapper;
|
||||
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceAddDTO;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceEditDTO;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListByBuildingIdDto;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceListDto;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryByIdDTO;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryDTO;
|
||||
import cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceResultDTO;
|
||||
import java.util.List;
|
||||
|
||||
public interface AcsElevatorDeviceMapper {
|
||||
int add(AcsElevatorDeviceAddDTO paramAcsElevatorDeviceAddDTO);
|
||||
|
||||
int edit(AcsElevatorDeviceEditDTO paramAcsElevatorDeviceEditDTO);
|
||||
|
||||
int delete(List<String> paramList);
|
||||
|
||||
List<AcsElevatorDeviceResultDTO> listByZoneId(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto);
|
||||
|
||||
List<AcsElevatorDeviceResultDTO> listByZoneIds(AcsElevatorDeviceListDto paramAcsElevatorDeviceListDto);
|
||||
|
||||
List<AcsElevatorDeviceResultDTO> page(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
|
||||
|
||||
List<AcsElevatorDeviceResultDTO> listBuBuildingId(AcsElevatorDeviceListByBuildingIdDto paramAcsElevatorDeviceListByBuildingIdDto);
|
||||
|
||||
List<AcsElevatorDeviceResultDTO> get(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
|
||||
|
||||
AcsElevatorDeviceResultDTO getById(AcsElevatorDeviceQueryByIdDTO paramAcsElevatorDeviceQueryByIdDTO);
|
||||
|
||||
AcsElevatorDeviceResultDTO getByDeciveCode(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
|
||||
|
||||
String getBuildingId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
|
||||
|
||||
String getBusinessId(AcsElevatorDeviceQueryDTO paramAcsElevatorDeviceQueryDTO);
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\mapper\AcsElevatorDeviceMapper.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+279
@@ -0,0 +1,279 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.cloudwalk.elevator.device.mapper.AcsElevatorDeviceMapper">
|
||||
|
||||
<resultMap id="resultMap" type="cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceResultDTO">
|
||||
<result column="ID" property="id" jdbcType="VARCHAR"/>
|
||||
<result column="business_id" property="businessId" jdbcType="VARCHAR"/>
|
||||
<result column="device_id" property="deviceId" jdbcType="VARCHAR"/>
|
||||
<result column="device_name" property="deviceName" jdbcType="VARCHAR"/>
|
||||
<result column="device_code" property="deviceCode" jdbcType="VARCHAR"/>
|
||||
<result column="device_type_name" property="deviceTypeName" jdbcType="VARCHAR"/>
|
||||
<result column="area_name" property="areaName" jdbcType="VARCHAR"/>
|
||||
<result column="area_id" property="areaId" jdbcType="VARCHAR"/>
|
||||
<result column="current_building_id" property="currentBuildingId" jdbcType="VARCHAR"/>
|
||||
<result column="current_building" property="currentBuilding" jdbcType="VARCHAR"/>
|
||||
<result column="current_floor_id" property="currentFloorId" jdbcType="VARCHAR"/>
|
||||
<result column="current_floor" property="currentFloor" jdbcType="VARCHAR"/>
|
||||
<result column="elevator_floor_list" property="elevatorFloorList" jdbcType="VARCHAR"/>
|
||||
<result column="elevator_floor_id_list" property="elevatorFloorIdList" jdbcType="VARCHAR"/>
|
||||
<result column="IP" property="ip" jdbcType="VARCHAR"/>
|
||||
<result column="STATUS" property="status" jdbcType="VARCHAR"/>
|
||||
<result column="onlineStatus" property="onlineStatus" jdbcType="VARCHAR"/>
|
||||
<result column="LAST_HEARTBEAT_TIME" property="lastHeartbeatTime" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<select id="get"
|
||||
parameterType="cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryDTO"
|
||||
resultMap="resultMap">
|
||||
select ID,business_id,device_id,device_name,device_code,
|
||||
device_type_name,area_name,area_id,current_building_id,current_building,current_floor_id,
|
||||
current_floor,elevator_floor_list,elevator_floor_id_list
|
||||
from elevator_device
|
||||
<trim prefix="where" prefixOverrides="and|or">
|
||||
<if test="businessId != null and businessId != ''">
|
||||
and business_id = #{businessId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="deviceName != null and deviceName != ''">
|
||||
and device_name = #{deviceName, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="deviceTypeName != null and deviceTypeName != ''">
|
||||
and device_type_name = #{deviceTypeName, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="areaName != null and deviceTypeName != ''">
|
||||
and area_name = #{areaName, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="deviceId != null and deviceId != ''">
|
||||
and device_id = #{deviceId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="deviceCode != null and deviceCode != ''">
|
||||
and device_code = #{deviceCode, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="areaIds != null and areaIds.size > 0" >
|
||||
and area_id in
|
||||
<foreach item="item" collection="areaIds" separator="," open="(" close=")">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
</trim>
|
||||
order by ID desc
|
||||
</select>
|
||||
|
||||
<select id="getById"
|
||||
parameterType="cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryByIdDTO"
|
||||
resultMap="resultMap">
|
||||
select ID,business_id,device_id,device_name,device_code,
|
||||
device_type_name,area_name,area_id,current_building_id,current_building,current_floor_id,
|
||||
current_floor,elevator_floor_list,elevator_floor_id_list
|
||||
from elevator_device
|
||||
<trim prefix="where" prefixOverrides="and|or">
|
||||
<if test="id != null and id != ''">
|
||||
and ID = #{id, jdbcType=VARCHAR}
|
||||
</if>
|
||||
</trim>
|
||||
</select>
|
||||
|
||||
|
||||
<select id="getByDeciveCode" resultMap="resultMap">
|
||||
select ID,business_id,device_id,device_name,
|
||||
device_type_name,area_name,area_id,current_building_id,current_building,current_floor_id,
|
||||
current_floor,elevator_floor_list,elevator_floor_id_list
|
||||
from elevator_device
|
||||
<trim prefix="where" prefixOverrides="and|or">
|
||||
<if test="deviceCode != null and deviceCode != ''">
|
||||
and device_code = #{deviceCode, jdbcType=VARCHAR}
|
||||
</if>
|
||||
</trim>
|
||||
</select>
|
||||
|
||||
<select id="listByZoneId" resultMap="resultMap">
|
||||
SELECT ID,business_id,device_id,device_name,
|
||||
device_type_name,area_name,area_id,current_building_id,current_building,current_floor_id,
|
||||
current_floor,elevator_floor_list,elevator_floor_id_list
|
||||
FROM elevator_device
|
||||
WHERE current_floor_id = #{currentFloorId, jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
<select id="listByZoneIds" resultMap="resultMap">
|
||||
SELECT ID,business_id,device_id,device_name,
|
||||
device_type_name,area_name,area_id,current_building_id,current_building,current_floor_id,
|
||||
current_floor,elevator_floor_list,elevator_floor_id_list
|
||||
FROM elevator_device
|
||||
WHERE 1=1
|
||||
<if test="currentFloorId != null and currentFloorId != ''">
|
||||
and current_floor_id = #{currentFloorId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="currentFloorIds != null and currentFloorIds.size > 0">
|
||||
and current_floor_id in
|
||||
<foreach item="item" collection="currentFloorIds" separator="," open="(" close=")">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="page"
|
||||
parameterType="cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceQueryDTO"
|
||||
resultMap="resultMap">
|
||||
|
||||
select t1.ID,t1.business_id,device_id,t1.device_name,t1.device_code,
|
||||
device_type_name,area_name,area_id,current_building_id,current_building,current_floor_id,
|
||||
current_floor,elevator_floor_list,elevator_floor_id_list,t3.IP, t2.STATUS,
|
||||
t2.LAST_HEARTBEAT_TIME,
|
||||
CASE
|
||||
WHEN abs(t2.LAST_HEARTBEAT_TIME/1000 - UNIX_TIMESTAMP()) <![CDATA[ <= ]]> 300 THEN 2
|
||||
ELSE 3
|
||||
END AS onlineStatus
|
||||
from elevator_device t1
|
||||
left join `cwos_portal`.cw_ge_device t2 on t1.device_id = t2.ID
|
||||
left join `cwos_portal`.cw_ge_device_camera t3 on t1.device_id = t3.GE_DEVICE_ID
|
||||
<trim prefix="where" prefixOverrides="and|or">
|
||||
<if test="businessId != null and businessId != ''">
|
||||
and t1.business_id = #{businessId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="deviceName != null and deviceName != ''">
|
||||
and t1.device_name like concat('%', #{deviceName, jdbcType=VARCHAR}, '%')
|
||||
</if>
|
||||
<if test="deviceTypeName != null and deviceTypeName != ''">
|
||||
and t1.device_type_name = #{deviceTypeName, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="areaName != null and deviceTypeName != ''">
|
||||
and t1.area_name = #{areaName, jdbcType=VARCHAR}
|
||||
|
||||
|
||||
</if>
|
||||
<if test="deviceId != null and deviceId != ''">
|
||||
and t1.device_id = #{deviceId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="deviceCode != null and deviceCode != ''">
|
||||
and t1.device_code like concat('%', #{deviceCode, jdbcType=VARCHAR}, '%')
|
||||
</if>
|
||||
<if test="areaIds != null and areaIds.size > 0" >
|
||||
and t1.area_id in
|
||||
<foreach item="item" collection="areaIds" separator="," open="(" close=")">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="ip != null and ip != ''">
|
||||
and t3.IP like concat('%', #{ip, jdbcType=VARCHAR}, '%')
|
||||
</if>
|
||||
<if test="status != null">
|
||||
and t2.STATUS = #{status}
|
||||
</if>
|
||||
<if test="onlineStatus != null">
|
||||
<choose>
|
||||
<when test="onlineStatus == 2">
|
||||
and abs(t2.LAST_HEARTBEAT_TIME/1000 - UNIX_TIMESTAMP()) <![CDATA[ <= ]]> 300
|
||||
</when>
|
||||
<otherwise>
|
||||
and abs(t2.LAST_HEARTBEAT_TIME/1000 - UNIX_TIMESTAMP()) <![CDATA[ > ]]> 300
|
||||
</otherwise>
|
||||
</choose>
|
||||
</if>
|
||||
</trim>
|
||||
order by
|
||||
CASE
|
||||
WHEN t1.current_floor LIKE '%F' THEN SUBSTRING(t1.current_floor, 1, LENGTH(t1.current_floor) - 1) + 0
|
||||
WHEN t1.current_floor LIKE '%MF' THEN SUBSTRING(t1.current_floor, 1, LENGTH(t1.current_floor) - 2) + 0
|
||||
ELSE t1.current_floor + 0
|
||||
END
|
||||
</select>
|
||||
|
||||
<select id="listBuBuildingId" resultMap="resultMap">
|
||||
SELECT ID,business_id,device_id,device_name,
|
||||
device_type_name,area_name,area_id,current_building_id,current_building,current_floor_id,
|
||||
current_floor,elevator_floor_list,elevator_floor_id_list
|
||||
FROM elevator_device
|
||||
WHERE current_building_id = #{currentBuildingId, jdbcType=VARCHAR}
|
||||
and business_id = #{businessId, jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
<insert id="add" parameterType="cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceAddDTO">
|
||||
insert into elevator_device (ID, create_time, last_update_time, delete_flag,
|
||||
device_id, device_name, device_code, device_type_name,
|
||||
area_name, current_building_id, current_building, current_floor_id,
|
||||
current_floor, elevator_floor_list, business_id, area_id,elevator_floor_id_list)
|
||||
values (
|
||||
#{id,jdbcType=VARCHAR},
|
||||
#{createTime,jdbcType=BIGINT},
|
||||
#{lastUpdateTime,jdbcType=BIGINT},
|
||||
#{deleteFlag,jdbcType=TINYINT},
|
||||
#{deviceId,jdbcType=VARCHAR},
|
||||
#{deviceName,jdbcType=VARCHAR},
|
||||
#{deviceCode,jdbcType=VARCHAR},
|
||||
#{deviceTypeName,jdbcType=VARCHAR},
|
||||
#{areaName,jdbcType=VARCHAR},
|
||||
#{currentBuildingId,jdbcType=VARCHAR},
|
||||
#{currentBuilding,jdbcType=VARCHAR},
|
||||
#{currentFloorId,jdbcType=VARCHAR},
|
||||
#{currentFloor,jdbcType=VARCHAR},
|
||||
#{elevatorFloorList,jdbcType=VARCHAR},
|
||||
#{businessId,jdbcType=VARCHAR},
|
||||
#{areaId,jdbcType=VARCHAR},
|
||||
#{elevatorFloorIdList,jdbcType=VARCHAR}
|
||||
)
|
||||
</insert>
|
||||
|
||||
<update id="edit"
|
||||
parameterType="cn.cloudwalk.elevator.device.dto.AcsElevatorDeviceEditDTO">
|
||||
update elevator_device
|
||||
<trim prefix="set" suffixOverrides=",">
|
||||
<if test="lastUpdateTime != null">
|
||||
last_update_time = #{lastUpdateTime, jdbcType=BIGINT},
|
||||
</if>
|
||||
|
||||
<if test="elevatorFloorList != null">
|
||||
elevator_floor_list = #{elevatorFloorList, jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="currentFloorId != null and currentFloorId != ''">
|
||||
current_floor_id = #{currentFloorId, jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="currentFloor != null and currentFloor != ''">
|
||||
current_floor = #{currentFloor, jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="currentBuilding != null and currentBuilding != ''">
|
||||
current_building = #{currentBuilding, jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="currentBuildingId != null and currentBuildingId != ''">
|
||||
current_building_id = #{currentBuildingId, jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="currentBuildingId != null and currentBuildingId != ''">
|
||||
area_id = #{areaId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="elevatorFloorIdList != null and elevatorFloorIdList != ''">
|
||||
elevator_floor_id_list = #{elevatorFloorIdList,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</trim>
|
||||
<where>
|
||||
ID = #{id, jdbcType=VARCHAR}
|
||||
</where>
|
||||
</update>
|
||||
|
||||
|
||||
<delete id="delete">
|
||||
delete from elevator_device
|
||||
where ID in
|
||||
<foreach item="id" collection="list" separator="," open="(" close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
|
||||
<select id="getBuildingId" resultType="java.lang.String">
|
||||
select current_building_id
|
||||
from elevator_device
|
||||
<if test="deviceCode != null and deviceCode != ''">
|
||||
where device_code = #{deviceCode,jdbcType=VARCHAR}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="getBusinessId" resultType="java.lang.String">
|
||||
select business_id
|
||||
from elevator_device
|
||||
<if test="deviceCode != null and deviceCode != ''">
|
||||
where device_code = #{deviceCode,jdbcType=VARCHAR}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
|
||||
</mapper>
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package cn.cloudwalk.elevator.device.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface DeviceImageStoreMapper {
|
||||
Boolean save(@Param("buildingId") String paramString1, @Param("imageStoreId") String paramString2);
|
||||
|
||||
String getByBuildingId(String paramString);
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\device\mapper\DeviceImageStoreMapper.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.cloudwalk.elevator.device.mapper.DeviceImageStoreMapper">
|
||||
|
||||
<insert id="save">
|
||||
insert into device_image_store (building_id, image_store_id)
|
||||
values (#{buildingId},
|
||||
#{imageStoreId})
|
||||
</insert>
|
||||
|
||||
<select id="getByBuildingId" resultType="java.lang.String">
|
||||
select image_store_id
|
||||
from device_image_store
|
||||
where building_id = #{buildingId}
|
||||
</select>
|
||||
</mapper>
|
||||
+36
@@ -0,0 +1,36 @@
|
||||
package cn.cloudwalk.elevator.passrule.dao;
|
||||
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleAddDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleEditDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleIsDefaultDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleResultDto;
|
||||
import java.util.List;
|
||||
|
||||
public interface AcsPassRuleDao {
|
||||
Integer insert(AcsPassRuleAddDto paramAcsPassRuleAddDto) throws DataAccessException;
|
||||
|
||||
Integer update(AcsPassRuleEditDto paramAcsPassRuleEditDto) throws DataAccessException;
|
||||
|
||||
Integer delete(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto) throws DataAccessException;
|
||||
|
||||
CloudwalkPageAble<AcsPassRuleResultDto> page(AcsPassRuleQueryDto paramAcsPassRuleQueryDto, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
|
||||
|
||||
List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto paramAcsPassRuleQueryDto) throws DataAccessException;
|
||||
|
||||
String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto paramAcsPassRuleIsDefaultDto) throws DataAccessException;
|
||||
|
||||
List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dao\AcsPassRuleDao.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+76
@@ -0,0 +1,76 @@
|
||||
package cn.cloudwalk.elevator.passrule.dao;
|
||||
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleLabelResultDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRulePersonListDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefAddDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefResultDto;
|
||||
import java.util.List;
|
||||
|
||||
public interface ImageRuleRefDao {
|
||||
CloudwalkPageAble<ImageRuleRefResultDto> page(AcsPassRuleQueryDto paramAcsPassRuleQueryDto, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
|
||||
|
||||
List<String> listRuleByZoneIdExtDefault(String paramString);
|
||||
|
||||
List<ImageRuleRefResultDto> listByParentRule(List<String> paramList);
|
||||
|
||||
List<ImageRuleRefResultDto> listByPersonId(String paramString) throws DataAccessException;
|
||||
|
||||
List<ImageRuleRefResultDto> listByLabelId(String paramString) throws DataAccessException;
|
||||
|
||||
List<ImageRuleRefResultDto> listByOrgId(String paramString) throws DataAccessException;
|
||||
|
||||
List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
|
||||
|
||||
List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
|
||||
|
||||
List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto) throws DataAccessException;
|
||||
|
||||
List<AcsPassRuleImageResultDto> listZoneInfoByIds(List<String> paramList) throws DataAccessException;
|
||||
|
||||
List<AcsPassRuleImageResultDto> listByNotZoneIds(AcsPassRuleQueryDto paramAcsPassRuleQueryDto) throws DataAccessException;
|
||||
|
||||
List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto paramAcsPassRulePersonListDto) throws DataAccessException;
|
||||
|
||||
List<String> listPersonDelByZoneId(String paramString) throws DataAccessException;
|
||||
|
||||
List<String> listPersonDelByPersonId(String paramString) throws DataAccessException;
|
||||
|
||||
ImageRuleRefResultDto getDefaultByZoneId(String paramString) throws DataAccessException;
|
||||
|
||||
ImageRuleRefResultDto getById(String paramString) throws DataAccessException;
|
||||
|
||||
String getByRuleName(String paramString1, String paramString2) throws DataAccessException;
|
||||
|
||||
ImageRuleRefResultDto getByPersonIdAndZoneId(List<String> paramList, String paramString) throws DataAccessException;
|
||||
|
||||
ImageRuleRefResultDto getDelByPersonIdAndZoneId(String paramString1, String paramString2) throws DataAccessException;
|
||||
|
||||
List<String> countPersonIdByZoneId(String paramString) throws DataAccessException;
|
||||
|
||||
Boolean insert(ImageRuleRefAddDto paramImageRuleRefAddDto) throws DataAccessException;
|
||||
|
||||
Boolean insertList(List<ImageRuleRefAddDto> paramList) throws DataAccessException;
|
||||
|
||||
Boolean deleteById(String paramString) throws DataAccessException;
|
||||
|
||||
Boolean deleteByZoneIdAndName(String paramString1, String paramString2) throws DataAccessException;
|
||||
|
||||
Boolean deleteByPersonIdsIsDel(List<String> paramList, String paramString) throws DataAccessException;
|
||||
|
||||
Boolean deleteByPersonId(String paramString1, String paramString2) throws DataAccessException;
|
||||
|
||||
Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto) throws DataAccessException;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dao\ImageRuleRefDao.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+154
@@ -0,0 +1,154 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPassRuleAddDto
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = 6909321999650444051L;
|
||||
/* */ private String businessId;
|
||||
/* */ private String name;
|
||||
/* */ private String zoneId;
|
||||
/* */ private String zoneName;
|
||||
/* */ private String validDateCron;
|
||||
/* */ private String validDateJson;
|
||||
/* */ private Long beginDate;
|
||||
/* */ private Long endDate;
|
||||
/* */ private String imageStoreId;
|
||||
/* */ private Integer isDefault;
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 70 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneId(String zoneId) {
|
||||
/* 74 */ this.zoneId = zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getZoneName() {
|
||||
/* 78 */ return this.zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneName(String zoneName) {
|
||||
/* 82 */ this.zoneName = zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 86 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 90 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 94 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 98 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getValidDateCron() {
|
||||
/* 102 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(String validDateCron) {
|
||||
/* 106 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getValidDateJson() {
|
||||
/* 110 */ return this.validDateJson;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateJson(String validDateJson) {
|
||||
/* 114 */ this.validDateJson = validDateJson;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getBeginDate() {
|
||||
/* 118 */ return this.beginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBeginDate(Long beginDate) {
|
||||
/* 122 */ this.beginDate = beginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getEndDate() {
|
||||
/* 126 */ return this.endDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEndDate(Long endDate) {
|
||||
/* 130 */ this.endDate = endDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 134 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 138 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getIsDefault() {
|
||||
/* 142 */ return this.isDefault;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsDefault(Integer isDefault) {
|
||||
/* 146 */ this.isDefault = isDefault;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleAddDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+100
@@ -0,0 +1,100 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPassRuleDeleteDto
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = -6255045079103336579L;
|
||||
/* */ private String businessId;
|
||||
/* */ private String deviceId;
|
||||
/* */ private List<String> ids;
|
||||
/* */ private String zoneId;
|
||||
/* */ private String orgId;
|
||||
/* */ private String labelId;
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 48 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneId(String zoneId) {
|
||||
/* 52 */ this.zoneId = zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgId() {
|
||||
/* 56 */ return this.orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgId(String orgId) {
|
||||
/* 60 */ this.orgId = orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLabelId() {
|
||||
/* 64 */ return this.labelId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLabelId(String labelId) {
|
||||
/* 68 */ this.labelId = labelId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 72 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 76 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 80 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 84 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIds() {
|
||||
/* 88 */ return this.ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIds(List<String> ids) {
|
||||
/* 92 */ this.ids = ids;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleDeleteDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+114
@@ -0,0 +1,114 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPassRuleEditDto
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = -9212159235737030371L;
|
||||
/* */ private String businessId;
|
||||
/* */ private String name;
|
||||
/* */ private String validDateCron;
|
||||
/* */ private String validDateJson;
|
||||
/* */ private Long beginDate;
|
||||
/* */ private Long endDate;
|
||||
/* */ private String imageStoreId;
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 54 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 58 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 62 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 66 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getValidDateCron() {
|
||||
/* 70 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(String validDateCron) {
|
||||
/* 74 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getValidDateJson() {
|
||||
/* 78 */ return this.validDateJson;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateJson(String validDateJson) {
|
||||
/* 82 */ this.validDateJson = validDateJson;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getBeginDate() {
|
||||
/* 86 */ return this.beginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBeginDate(Long beginDate) {
|
||||
/* 90 */ this.beginDate = beginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getEndDate() {
|
||||
/* 94 */ return this.endDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEndDate(Long endDate) {
|
||||
/* 98 */ this.endDate = endDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 102 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 106 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleEditDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+86
@@ -0,0 +1,86 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.page.CloudwalkBasePageForm;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPassRuleImageDto
|
||||
/* */ extends CloudwalkBasePageForm
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = -52687427633888290L;
|
||||
/* */ private List<String> imageStoreIds;
|
||||
/* */ private String businessId;
|
||||
/* */ private String personId;
|
||||
/* */ private List<String> includeOrganizations;
|
||||
/* */ private List<String> includeLabels;
|
||||
/* */
|
||||
/* */ public List<String> getImageStoreIds() {
|
||||
/* 42 */ return this.imageStoreIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
/* 46 */ this.imageStoreIds = imageStoreIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 50 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 54 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 58 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 62 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIncludeOrganizations() {
|
||||
/* 66 */ return this.includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeOrganizations(List<String> includeOrganizations) {
|
||||
/* 70 */ this.includeOrganizations = includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIncludeLabels() {
|
||||
/* 74 */ return this.includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeLabels(List<String> includeLabels) {
|
||||
/* 78 */ this.includeLabels = includeLabels;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleImageDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPassRuleImageResultDto
|
||||
/* */ {
|
||||
/* */ private String zoneId;
|
||||
/* */ private String zoneName;
|
||||
/* */ private String imageStoreId;
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 30 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneId(String zoneId) {
|
||||
/* 34 */ this.zoneId = zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getZoneName() {
|
||||
/* 38 */ return this.zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneName(String zoneName) {
|
||||
/* 42 */ this.zoneName = zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 46 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 50 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleImageResultDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+50
@@ -0,0 +1,50 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPassRuleIsDefaultDto
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = 6909321999650444051L;
|
||||
/* */ private String businessId;
|
||||
/* */ private String zoneId;
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 30 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 34 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 38 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneId(String zoneId) {
|
||||
/* 42 */ this.zoneId = zoneId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleIsDefaultDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPassRuleLabelResultDto
|
||||
/* */ {
|
||||
/* */ private String zoneId;
|
||||
/* */ private String zoneName;
|
||||
/* */ private String labelId;
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 30 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneId(String zoneId) {
|
||||
/* 34 */ this.zoneId = zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getZoneName() {
|
||||
/* 38 */ return this.zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneName(String zoneName) {
|
||||
/* 42 */ this.zoneName = zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLabelId() {
|
||||
/* 46 */ return this.labelId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLabelId(String labelId) {
|
||||
/* 50 */ this.labelId = labelId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleLabelResultDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+72
@@ -0,0 +1,72 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPassRulePersonListDto
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = -52687427633888290L;
|
||||
/* */ private String businessId;
|
||||
/* */ private List<String> personIds;
|
||||
/* */ private List<String> includeOrganizations;
|
||||
/* */ private List<String> includeLabels;
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 36 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 40 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getPersonIds() {
|
||||
/* 44 */ return this.personIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonIds(List<String> personIds) {
|
||||
/* 48 */ this.personIds = personIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIncludeOrganizations() {
|
||||
/* 52 */ return this.includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeOrganizations(List<String> includeOrganizations) {
|
||||
/* 56 */ this.includeOrganizations = includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIncludeLabels() {
|
||||
/* 60 */ return this.includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIncludeLabels(List<String> includeLabels) {
|
||||
/* 64 */ this.includeLabels = includeLabels;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRulePersonListDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPassRulePersonListResultDto
|
||||
/* */ {
|
||||
/* */ private String personId;
|
||||
/* */ private List<AcsPassRuleImageResultDto> zoneList;
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 27 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 31 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<AcsPassRuleImageResultDto> getZoneList() {
|
||||
/* 35 */ return this.zoneList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneList(List<AcsPassRuleImageResultDto> zoneList) {
|
||||
/* 39 */ this.zoneList = zoneList;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRulePersonListResultDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+114
@@ -0,0 +1,114 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPassRuleQueryDto
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = 7280163220219331909L;
|
||||
/* */ private String id;
|
||||
/* */ private String zoneId;
|
||||
/* */ private String businessId;
|
||||
/* */ private String imageStoreId;
|
||||
/* */ private List<String> imageStoreIds;
|
||||
/* */ private List<String> ids;
|
||||
/* */ private List<String> zoneIds;
|
||||
/* */
|
||||
/* */ public List<String> getZoneIds() {
|
||||
/* 54 */ return this.zoneIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneIds(List<String> zoneIds) {
|
||||
/* 58 */ this.zoneIds = zoneIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getIds() {
|
||||
/* 62 */ return this.ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIds(List<String> ids) {
|
||||
/* 66 */ this.ids = ids;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 70 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneId(String zoneId) {
|
||||
/* 74 */ this.zoneId = zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 78 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 82 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 86 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 90 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 94 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 98 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getImageStoreIds() {
|
||||
/* 102 */ return this.imageStoreIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreIds(List<String> imageStoreIds) {
|
||||
/* 106 */ this.imageStoreIds = imageStoreIds;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleQueryDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+153
@@ -0,0 +1,153 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPassRuleResultDto
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = -8387459232695360257L;
|
||||
/* */ private String businessId;
|
||||
/* */ private String zoneId;
|
||||
/* */ private String zoneName;
|
||||
/* */ private String name;
|
||||
/* */ private String validDateCron;
|
||||
/* */ private String validDateJson;
|
||||
/* */ private Long beginDate;
|
||||
/* */ private Long endDate;
|
||||
/* */ private String imageStoreId;
|
||||
/* */ private Integer isDefault;
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 69 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneId(String zoneId) {
|
||||
/* 73 */ this.zoneId = zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 77 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 81 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 85 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setName(String name) {
|
||||
/* 89 */ this.name = name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getValidDateCron() {
|
||||
/* 93 */ return this.validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateCron(String validDateCron) {
|
||||
/* 97 */ this.validDateCron = validDateCron;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getValidDateJson() {
|
||||
/* 101 */ return this.validDateJson;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setValidDateJson(String validDateJson) {
|
||||
/* 105 */ this.validDateJson = validDateJson;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getBeginDate() {
|
||||
/* 109 */ return this.beginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBeginDate(Long beginDate) {
|
||||
/* 113 */ this.beginDate = beginDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getEndDate() {
|
||||
/* 117 */ return this.endDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEndDate(Long endDate) {
|
||||
/* 121 */ this.endDate = endDate;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getImageStoreId() {
|
||||
/* 125 */ return this.imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setImageStoreId(String imageStoreId) {
|
||||
/* 129 */ this.imageStoreId = imageStoreId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getZoneName() {
|
||||
/* 133 */ return this.zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setZoneName(String zoneName) {
|
||||
/* 137 */ this.zoneName = zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getIsDefault() {
|
||||
/* 141 */ return this.isDefault;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsDefault(Integer isDefault) {
|
||||
/* 145 */ this.isDefault = isDefault;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\AcsPassRuleResultDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+92
File diff suppressed because one or more lines are too long
+68
@@ -0,0 +1,68 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */ public class ImageRuleRefListResult extends CloudwalkBaseTimes implements Serializable {
|
||||
/* */ private static final long serialVersionUID = 6909321999650444051L;
|
||||
/* */ private String businessId;
|
||||
/* */ private String name;
|
||||
/* */ private String zoneId;
|
||||
/* */ private String zoneName;
|
||||
/* */ private String personId;
|
||||
/* */ private List<String> includeLabels;
|
||||
/* */ private List<String> includeOrganizations;
|
||||
/* */ private List<String> excludeLabels;
|
||||
/* */
|
||||
/* 17 */ public void setBusinessId(String businessId) { this.businessId = businessId; } public void setName(String name) { this.name = name; } public void setZoneId(String zoneId) { this.zoneId = zoneId; } public void setZoneName(String zoneName) { this.zoneName = zoneName; } public void setPersonId(String personId) { this.personId = personId; } public void setIncludeLabels(List<String> includeLabels) { this.includeLabels = includeLabels; } public void setIncludeOrganizations(List<String> includeOrganizations) { this.includeOrganizations = includeOrganizations; } public void setExcludeLabels(List<String> excludeLabels) { this.excludeLabels = excludeLabels; } public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof ImageRuleRefListResult)) return false; ImageRuleRefListResult other = (ImageRuleRefListResult)o; if (!other.canEqual(this)) return false; Object this$businessId = getBusinessId(), other$businessId = other.getBusinessId(); if ((this$businessId == null) ? (other$businessId != null) : !this$businessId.equals(other$businessId)) return false; Object this$name = getName(), other$name = other.getName(); if ((this$name == null) ? (other$name != null) : !this$name.equals(other$name)) return false; Object this$zoneId = getZoneId(), other$zoneId = other.getZoneId(); if ((this$zoneId == null) ? (other$zoneId != null) : !this$zoneId.equals(other$zoneId)) return false; Object this$zoneName = getZoneName(), other$zoneName = other.getZoneName(); if ((this$zoneName == null) ? (other$zoneName != null) : !this$zoneName.equals(other$zoneName)) return false; Object this$personId = getPersonId(), other$personId = other.getPersonId(); if ((this$personId == null) ? (other$personId != null) : !this$personId.equals(other$personId)) return false; Object<String> this$includeLabels = (Object<String>)getIncludeLabels(), other$includeLabels = (Object<String>)other.getIncludeLabels(); if ((this$includeLabels == null) ? (other$includeLabels != null) : !this$includeLabels.equals(other$includeLabels)) return false; Object<String> this$includeOrganizations = (Object<String>)getIncludeOrganizations(), other$includeOrganizations = (Object<String>)other.getIncludeOrganizations(); if ((this$includeOrganizations == null) ? (other$includeOrganizations != null) : !this$includeOrganizations.equals(other$includeOrganizations)) return false; Object<String> this$excludeLabels = (Object<String>)getExcludeLabels(), other$excludeLabels = (Object<String>)other.getExcludeLabels(); return !((this$excludeLabels == null) ? (other$excludeLabels != null) : !this$excludeLabels.equals(other$excludeLabels)); } protected boolean canEqual(Object other) { return other instanceof ImageRuleRefListResult; } public int hashCode() { int PRIME = 59; result = 1; Object $businessId = getBusinessId(); result = result * 59 + (($businessId == null) ? 43 : $businessId.hashCode()); Object $name = getName(); result = result * 59 + (($name == null) ? 43 : $name.hashCode()); Object $zoneId = getZoneId(); result = result * 59 + (($zoneId == null) ? 43 : $zoneId.hashCode()); Object $zoneName = getZoneName(); result = result * 59 + (($zoneName == null) ? 43 : $zoneName.hashCode()); Object $personId = getPersonId(); result = result * 59 + (($personId == null) ? 43 : $personId.hashCode()); Object<String> $includeLabels = (Object<String>)getIncludeLabels(); result = result * 59 + (($includeLabels == null) ? 43 : $includeLabels.hashCode()); Object<String> $includeOrganizations = (Object<String>)getIncludeOrganizations(); result = result * 59 + (($includeOrganizations == null) ? 43 : $includeOrganizations.hashCode()); Object<String> $excludeLabels = (Object<String>)getExcludeLabels(); return result * 59 + (($excludeLabels == null) ? 43 : $excludeLabels.hashCode()); } public String toString() { return "ImageRuleRefListResult(businessId=" + getBusinessId() + ", name=" + getName() + ", zoneId=" + getZoneId() + ", zoneName=" + getZoneName() + ", personId=" + getPersonId() + ", includeLabels=" + getIncludeLabels() + ", includeOrganizations=" + getIncludeOrganizations() + ", excludeLabels=" + getExcludeLabels() + ")"; }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 25 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 30 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 35 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getZoneName() {
|
||||
/* 40 */ return this.zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 45 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<String> getIncludeLabels() {
|
||||
/* 50 */ return this.includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<String> getIncludeOrganizations() {
|
||||
/* 55 */ return this.includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<String> getExcludeLabels() {
|
||||
/* 60 */ return this.excludeLabels;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\ImageRuleRefListResult.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+104
@@ -0,0 +1,104 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */ public class ImageRuleRefResultDto
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = 6909321999650444051L;
|
||||
/* */ private String id;
|
||||
/* */ private Long createTime;
|
||||
/* */ private Long lastUpdateTime;
|
||||
/* */ private String businessId;
|
||||
/* */ private String name;
|
||||
/* */ private String zoneId;
|
||||
/* */ private String zoneName;
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 18 */ this.id = id; } private String personId; private String includeLabels; private String includeOrganizations; private String excludeLabels; private Long startTime; private Long endTime; private Integer isDefault; private String parentRule; public void setCreateTime(Long createTime) { this.createTime = createTime; } public void setLastUpdateTime(Long lastUpdateTime) { this.lastUpdateTime = lastUpdateTime; } public void setBusinessId(String businessId) { this.businessId = businessId; } public void setName(String name) { this.name = name; } public void setZoneId(String zoneId) { this.zoneId = zoneId; } public void setZoneName(String zoneName) { this.zoneName = zoneName; } public void setPersonId(String personId) { this.personId = personId; } public void setIncludeLabels(String includeLabels) { this.includeLabels = includeLabels; } public void setIncludeOrganizations(String includeOrganizations) { this.includeOrganizations = includeOrganizations; } public void setExcludeLabels(String excludeLabels) { this.excludeLabels = excludeLabels; } public void setStartTime(Long startTime) { this.startTime = startTime; } public void setEndTime(Long endTime) { this.endTime = endTime; } public void setIsDefault(Integer isDefault) { this.isDefault = isDefault; } public void setParentRule(String parentRule) { this.parentRule = parentRule; }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 26 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Long getCreateTime() {
|
||||
/* 31 */ return this.createTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Long getLastUpdateTime() {
|
||||
/* 36 */ return this.lastUpdateTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 41 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getName() {
|
||||
/* 46 */ return this.name;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getZoneId() {
|
||||
/* 51 */ return this.zoneId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getZoneName() {
|
||||
/* 56 */ return this.zoneName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 61 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getIncludeLabels() {
|
||||
/* 66 */ return this.includeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getIncludeOrganizations() {
|
||||
/* 71 */ return this.includeOrganizations;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getExcludeLabels() {
|
||||
/* 76 */ return this.excludeLabels;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Long getStartTime() {
|
||||
/* 81 */ return this.startTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Long getEndTime() {
|
||||
/* 86 */ return this.endTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer getIsDefault() {
|
||||
/* 91 */ return this.isDefault;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getParentRule() {
|
||||
/* 96 */ return this.parentRule;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\dto\ImageRuleRefResultDto.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+106
@@ -0,0 +1,106 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.impl;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
/* */ import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
/* */ import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
/* */ import cn.cloudwalk.cloud.utils.BeanCopyUtils;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dao.AcsPassRuleDao;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleAddDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleEditDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleIsDefaultDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleResultDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.mapper.AcsPassRuleMapper;
|
||||
/* */ import com.github.pagehelper.Page;
|
||||
/* */ import com.github.pagehelper.PageHelper;
|
||||
/* */ import java.util.List;
|
||||
/* */ import javax.annotation.Resource;
|
||||
/* */ import org.slf4j.Logger;
|
||||
/* */ import org.slf4j.LoggerFactory;
|
||||
/* */ import org.springframework.stereotype.Repository;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ @Repository
|
||||
/* */ public class AcsPassRuleDaoImpl
|
||||
/* */ implements AcsPassRuleDao
|
||||
/* */ {
|
||||
/* */ @Resource
|
||||
/* */ private AcsPassRuleMapper acsPassRuleMapper;
|
||||
/* 46 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer insert(AcsPassRuleAddDto dto) {
|
||||
/* 50 */ return this.acsPassRuleMapper.insert(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer update(AcsPassRuleEditDto dto) {
|
||||
/* 55 */ return this.acsPassRuleMapper.update(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer delete(AcsPassRuleDeleteDto dto) {
|
||||
/* 60 */ return this.acsPassRuleMapper.delete(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public CloudwalkPageAble<AcsPassRuleResultDto> page(AcsPassRuleQueryDto dto, CloudwalkPageInfo page) {
|
||||
/* 65 */ PageHelper.startPage(page.getCurrentPage(), page.getPageSize());
|
||||
/* 66 */ Page<AcsPassRuleResultDto> result = (Page<AcsPassRuleResultDto>)this.acsPassRuleMapper.list(dto);
|
||||
/* 67 */ return new CloudwalkPageAble(BeanCopyUtils.copy(result.getResult(), AcsPassRuleResultDto.class), page, result
|
||||
/* 68 */ .getTotal());
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 74 */ return this.acsPassRuleMapper.list(dto);
|
||||
/* 75 */ } catch (Exception e) {
|
||||
/* 76 */ this.logger.error("查询紧通行规则异常,原因:[{}]", e.getMessage(), e);
|
||||
/* 77 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 84 */ return this.acsPassRuleMapper.getIsDefaultByZoneId(dto);
|
||||
/* 85 */ } catch (Exception e) {
|
||||
/* 86 */ this.logger.error("根据楼层id获取默认图库id异常,原因:[{}]", e.getMessage(), e);
|
||||
/* 87 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 94 */ return this.acsPassRuleMapper.listByImageId(dto);
|
||||
/* 95 */ } catch (Exception e) {
|
||||
/* 96 */ this.logger.error("根据图库id集合查询对应楼层信息异常,原因:[{}]", e.getMessage(), e);
|
||||
/* 97 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\impl\AcsPassRuleDaoImpl.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+370
@@ -0,0 +1,370 @@
|
||||
/* */ package cn.cloudwalk.elevator.passrule.impl;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
/* */ import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
/* */ import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
/* */ import cn.cloudwalk.cloud.utils.BeanCopyUtils;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dao.ImageRuleRefDao;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleLabelResultDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRulePersonListDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefAddDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefResultDto;
|
||||
/* */ import cn.cloudwalk.elevator.passrule.mapper.ImageRuleRefMapper;
|
||||
/* */ import com.github.pagehelper.Page;
|
||||
/* */ import com.github.pagehelper.PageHelper;
|
||||
/* */ import java.util.List;
|
||||
/* */ import javax.annotation.Resource;
|
||||
/* */ import org.slf4j.Logger;
|
||||
/* */ import org.slf4j.LoggerFactory;
|
||||
/* */ import org.springframework.stereotype.Repository;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ @Repository
|
||||
/* */ public class ImageRuleRefDaoImpl
|
||||
/* */ implements ImageRuleRefDao
|
||||
/* */ {
|
||||
/* */ @Resource
|
||||
/* */ private ImageRuleRefMapper imageRuleRefMapper;
|
||||
/* 47 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public CloudwalkPageAble<ImageRuleRefResultDto> page(AcsPassRuleQueryDto dto, CloudwalkPageInfo page) throws DataAccessException {
|
||||
/* 60 */ PageHelper.startPage(page.getCurrentPage(), page.getPageSize());
|
||||
/* 61 */ Page<ImageRuleRefResultDto> result = (Page<ImageRuleRefResultDto>)this.imageRuleRefMapper.page(dto);
|
||||
/* 62 */ return new CloudwalkPageAble(BeanCopyUtils.copy(result.getResult(), ImageRuleRefResultDto.class), page, result
|
||||
/* 63 */ .getTotal());
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<String> listRuleByZoneIdExtDefault(String zoneId) {
|
||||
/* 74 */ return this.imageRuleRefMapper.listRuleByZoneIdExtDefault(zoneId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<ImageRuleRefResultDto> listByParentRule(List<String> parentRuleIds) {
|
||||
/* 85 */ return this.imageRuleRefMapper.listByParentRule(parentRuleIds);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<ImageRuleRefResultDto> listByPersonId(String personId) throws DataAccessException {
|
||||
/* 96 */ return this.imageRuleRefMapper.listByPersonId(personId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<ImageRuleRefResultDto> listByLabelId(String labelId) throws DataAccessException {
|
||||
/* 107 */ return this.imageRuleRefMapper.listByLabelId(labelId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<ImageRuleRefResultDto> listByOrgId(String orgId) throws DataAccessException {
|
||||
/* 118 */ return this.imageRuleRefMapper.listByOrgId(orgId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto dto) throws DataAccessException {
|
||||
/* 130 */ return this.imageRuleRefMapper.listByPersonInfo(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto dto) throws DataAccessException {
|
||||
/* 142 */ return this.imageRuleRefMapper.listByRestructure(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto dto) throws DataAccessException {
|
||||
/* 154 */ return this.imageRuleRefMapper.listFloorsByRestructure(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsPassRuleImageResultDto> listZoneInfoByIds(List<String> zoneIds) throws DataAccessException {
|
||||
/* 166 */ return this.imageRuleRefMapper.listZoneInfoByIds(zoneIds);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsPassRuleImageResultDto> listByNotZoneIds(AcsPassRuleQueryDto dto) throws DataAccessException {
|
||||
/* 178 */ return this.imageRuleRefMapper.listByNotZoneIds(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto dto) throws DataAccessException {
|
||||
/* 190 */ return this.imageRuleRefMapper.listByPersonList(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<String> listPersonDelByZoneId(String zoneId) throws DataAccessException {
|
||||
/* 201 */ return this.imageRuleRefMapper.listPersonDelByZoneId(zoneId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<String> listPersonDelByPersonId(String personId) throws DataAccessException {
|
||||
/* 212 */ return this.imageRuleRefMapper.listPersonDelByPersonId(personId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public ImageRuleRefResultDto getDefaultByZoneId(String zoneId) throws DataAccessException {
|
||||
/* 223 */ return this.imageRuleRefMapper.getDefaultByZoneId(zoneId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public ImageRuleRefResultDto getById(String id) throws DataAccessException {
|
||||
/* 234 */ return this.imageRuleRefMapper.getById(id);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getByRuleName(String ruleName, String zoneId) throws DataAccessException {
|
||||
/* 246 */ return this.imageRuleRefMapper.getByRuleName(ruleName, zoneId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public ImageRuleRefResultDto getByPersonIdAndZoneId(List<String> personId, String zoneId) throws DataAccessException {
|
||||
/* 258 */ return this.imageRuleRefMapper.getByPersonIdAndZoneId(personId, zoneId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public ImageRuleRefResultDto getDelByPersonIdAndZoneId(String personId, String zoneId) throws DataAccessException {
|
||||
/* 270 */ return this.imageRuleRefMapper.getDelByPersonIdAndZoneId(personId, zoneId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<String> countPersonIdByZoneId(String zoneId) throws DataAccessException {
|
||||
/* 281 */ return this.imageRuleRefMapper.countPersonIdByZoneId(zoneId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Boolean insert(ImageRuleRefAddDto dto) {
|
||||
/* 291 */ return this.imageRuleRefMapper.insert(dto);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Boolean insertList(List<ImageRuleRefAddDto> insertList) throws DataAccessException {
|
||||
/* 302 */ return this.imageRuleRefMapper.insertList(insertList);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Boolean deleteById(String id) throws DataAccessException {
|
||||
/* 313 */ this.imageRuleRefMapper.deleteById(id);
|
||||
/* 314 */ this.imageRuleRefMapper.deleteByParentRule(id);
|
||||
/* 315 */ return Boolean.valueOf(true);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Boolean deleteByZoneIdAndName(String zoneId, String oldName) throws DataAccessException {
|
||||
/* 327 */ return this.imageRuleRefMapper.deleteByZoneIdAndName(zoneId, oldName);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Boolean deleteByPersonIdsIsDel(List<String> personId, String zoneId) throws DataAccessException {
|
||||
/* 339 */ return this.imageRuleRefMapper.deleteByPersonIdsIsDel(personId, zoneId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Boolean deleteByPersonId(String personId, String zoneId) throws DataAccessException {
|
||||
/* 351 */ return this.imageRuleRefMapper.deleteByPersonId(personId, zoneId);
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto dto) throws DataAccessException {
|
||||
/* 362 */ return this.imageRuleRefMapper.deleteByOrgAndLabel(dto);
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\impl\ImageRuleRefDaoImpl.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
package cn.cloudwalk.elevator.passrule.mapper;
|
||||
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleAddDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleEditDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleIsDefaultDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleResultDto;
|
||||
import java.util.List;
|
||||
|
||||
public interface AcsPassRuleMapper {
|
||||
Integer insert(AcsPassRuleAddDto paramAcsPassRuleAddDto);
|
||||
|
||||
Integer update(AcsPassRuleEditDto paramAcsPassRuleEditDto);
|
||||
|
||||
Integer delete(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto);
|
||||
|
||||
List<AcsPassRuleResultDto> list(AcsPassRuleQueryDto paramAcsPassRuleQueryDto);
|
||||
|
||||
String getIsDefaultByZoneId(AcsPassRuleIsDefaultDto paramAcsPassRuleIsDefaultDto);
|
||||
|
||||
List<AcsPassRuleImageResultDto> listByImageId(AcsPassRuleImageDto paramAcsPassRuleImageDto);
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\mapper\AcsPassRuleMapper.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+76
@@ -0,0 +1,76 @@
|
||||
package cn.cloudwalk.elevator.passrule.mapper;
|
||||
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleLabelResultDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRulePersonListDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefAddDto;
|
||||
import cn.cloudwalk.elevator.passrule.dto.ImageRuleRefResultDto;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface ImageRuleRefMapper {
|
||||
List<ImageRuleRefResultDto> page(AcsPassRuleQueryDto paramAcsPassRuleQueryDto);
|
||||
|
||||
List<String> listRuleByZoneIdExtDefault(String paramString);
|
||||
|
||||
List<String> listPersonDelByZoneId(@Param("zoneId") String paramString);
|
||||
|
||||
List<String> listPersonDelByPersonId(@Param("personId") String paramString);
|
||||
|
||||
List<ImageRuleRefResultDto> listByParentRule(@Param("parentRuleIds") List<String> paramList);
|
||||
|
||||
List<ImageRuleRefResultDto> listByPersonId(@Param("personId") String paramString);
|
||||
|
||||
List<ImageRuleRefResultDto> listByLabelId(@Param("labelId") String paramString);
|
||||
|
||||
List<ImageRuleRefResultDto> listByOrgId(@Param("orgId") String paramString);
|
||||
|
||||
List<AcsPassRuleImageResultDto> listByPersonInfo(AcsPassRuleImageDto paramAcsPassRuleImageDto);
|
||||
|
||||
List<AcsPassRuleImageResultDto> listByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto);
|
||||
|
||||
List<AcsPassRuleLabelResultDto> listFloorsByRestructure(AcsPassRuleImageDto paramAcsPassRuleImageDto);
|
||||
|
||||
List<AcsPassRuleImageResultDto> listZoneInfoByIds(@Param("zoneIds") List<String> paramList);
|
||||
|
||||
List<AcsPassRuleImageResultDto> listByNotZoneIds(@Param("request") AcsPassRuleQueryDto paramAcsPassRuleQueryDto);
|
||||
|
||||
List<ImageRuleRefResultDto> listByPersonList(AcsPassRulePersonListDto paramAcsPassRulePersonListDto);
|
||||
|
||||
ImageRuleRefResultDto getDefaultByZoneId(String paramString);
|
||||
|
||||
ImageRuleRefResultDto getById(String paramString);
|
||||
|
||||
String getByRuleName(@Param("ruleName") String paramString1, @Param("zoneId") String paramString2);
|
||||
|
||||
ImageRuleRefResultDto getByPersonIdAndZoneId(@Param("personIds") List<String> paramList, @Param("zoneId") String paramString);
|
||||
|
||||
ImageRuleRefResultDto getDelByPersonIdAndZoneId(@Param("personId") String paramString1, @Param("zoneId") String paramString2);
|
||||
|
||||
List<String> countPersonIdByZoneId(String paramString);
|
||||
|
||||
Boolean insert(ImageRuleRefAddDto paramImageRuleRefAddDto);
|
||||
|
||||
Boolean insertList(@Param("dtoList") List<ImageRuleRefAddDto> paramList);
|
||||
|
||||
Boolean deleteByZoneIdAndName(String paramString1, String paramString2);
|
||||
|
||||
Boolean deleteById(String paramString);
|
||||
|
||||
Boolean deleteByParentRule(String paramString);
|
||||
|
||||
Boolean deleteByPersonIdsIsDel(@Param("personIds") List<String> paramList, @Param("zoneId") String paramString);
|
||||
|
||||
Boolean deleteByPersonId(@Param("personId") String paramString1, @Param("zoneId") String paramString2);
|
||||
|
||||
Boolean deleteByOrgAndLabel(AcsPassRuleDeleteDto paramAcsPassRuleDeleteDto);
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\passrule\mapper\ImageRuleRefMapper.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
package cn.cloudwalk.elevator.record.dao;
|
||||
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorAnalyseCycleBusinessResultDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorPageRequestInfoResultDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorQueryCountDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordAddDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryResultDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordQueryResultDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordEditDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordQueryDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsRecordThreeSendQueryDTO;
|
||||
import java.util.List;
|
||||
|
||||
public interface AcsElevatorRecordDao {
|
||||
Integer add(AcsElevatorRecordAddDTO paramAcsElevatorRecordAddDTO) throws DataAccessException;
|
||||
|
||||
int update(AcsOpenDoorRecordEditDTO paramAcsOpenDoorRecordEditDTO) throws DataAccessException;
|
||||
|
||||
CloudwalkPageAble<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO paramAcsElevatorRecordDetailQueryDTO, CloudwalkPageInfo paramCloudwalkPageInfo) throws DataAccessException;
|
||||
|
||||
List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO paramAcsOpenDoorRecordQueryDTO) throws DataAccessException;
|
||||
|
||||
AcsElevatorPageRequestInfoResultDTO pageRequestInfo(String paramString) throws DataAccessException;
|
||||
|
||||
Integer analyseCount(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO) throws DataAccessException;
|
||||
|
||||
List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO) throws DataAccessException;
|
||||
|
||||
List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO paramAcsRecordThreeSendQueryDTO) throws DataAccessException;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dao\AcsElevatorRecordDao.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package cn.cloudwalk.elevator.record.dao;
|
||||
|
||||
public interface AcsPersonInfoDao {}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dao\AcsPersonInfoDao.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
package cn.cloudwalk.elevator.record.dao;
|
||||
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordAddDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordPageDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordResultDTO;
|
||||
import java.util.List;
|
||||
|
||||
public interface AcsRecogRecordDao {
|
||||
Integer add(AcsRecogRecordAddDTO paramAcsRecogRecordAddDTO) throws DataAccessException;
|
||||
|
||||
List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO paramAcsRecogRecordPageDTO) throws DataAccessException;
|
||||
|
||||
AcsRecogRecordResultDTO getByPersonId(String paramString) throws DataAccessException;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dao\AcsRecogRecordDao.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
package cn.cloudwalk.elevator.record.dao;
|
||||
|
||||
import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
import cn.cloudwalk.elevator.record.dto.SendRecordTimeAddDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.SendRecordTimeEditDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.SendRecordTimeResultDTO;
|
||||
|
||||
public interface SendRecordTimeDao {
|
||||
SendRecordTimeResultDTO getByType(Integer paramInteger) throws DataAccessException;
|
||||
|
||||
Integer add(SendRecordTimeAddDTO paramSendRecordTimeAddDTO) throws DataAccessException;
|
||||
|
||||
Integer update(SendRecordTimeEditDTO paramSendRecordTimeEditDTO) throws DataAccessException;
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dao\SendRecordTimeDao.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorAnalyseCycleBusinessResultDTO
|
||||
/* */ {
|
||||
/* */ private String businessId;
|
||||
/* */ private Integer count;
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 16 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 20 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getCount() {
|
||||
/* 24 */ return this.count;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCount(Integer count) {
|
||||
/* 28 */ this.count = count;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String toString() {
|
||||
/* 33 */ return "AcsElevatorAnalyseCycleBusinessResultDTO{businessId='" + this.businessId + '\'' + ", count=" + this.count + '}';
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorAnalyseCycleBusinessResultDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorPageRequestInfoResultDTO
|
||||
/* */ {
|
||||
/* */ private List<String> srcFloorList;
|
||||
/* */ private List<String> destFloorList;
|
||||
/* */ private List<String> dispatchElevatorNoList;
|
||||
/* */
|
||||
/* */ public List<String> getSrcFloorList() {
|
||||
/* 26 */ return this.srcFloorList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSrcFloorList(List<String> srcFloorList) {
|
||||
/* 30 */ this.srcFloorList = srcFloorList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getDestFloorList() {
|
||||
/* 34 */ return this.destFloorList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDestFloorList(List<String> destFloorList) {
|
||||
/* 38 */ this.destFloorList = destFloorList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getDispatchElevatorNoList() {
|
||||
/* 42 */ return this.dispatchElevatorNoList;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDispatchElevatorNoList(List<String> dispatchElevatorNoList) {
|
||||
/* 46 */ this.dispatchElevatorNoList = dispatchElevatorNoList;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorPageRequestInfoResultDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+63
@@ -0,0 +1,63 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorQueryCountDTO
|
||||
/* */ {
|
||||
/* */ private Long startTime;
|
||||
/* */ private Long endTime;
|
||||
/* */ private Integer recordResult;
|
||||
/* */ private String businessId;
|
||||
/* */ private String srcFloor;
|
||||
/* */
|
||||
/* */ public Long getStartTime() {
|
||||
/* 19 */ return this.startTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStartTime(Long startTime) {
|
||||
/* 23 */ this.startTime = startTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getEndTime() {
|
||||
/* 27 */ return this.endTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEndTime(Long endTime) {
|
||||
/* 31 */ this.endTime = endTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 35 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 39 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecordResult() {
|
||||
/* 43 */ return this.recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecordResult(Integer recordResult) {
|
||||
/* 47 */ this.recordResult = recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSrcFloor() {
|
||||
/* 51 */ return this.srcFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSrcFloor(String srcFloor) {
|
||||
/* 55 */ this.srcFloor = srcFloor;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorQueryCountDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+367
@@ -0,0 +1,367 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorRecordAddDTO
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private String businessId;
|
||||
/* */ private String deviceId;
|
||||
/* */ private String deviceCode;
|
||||
/* */ private String deviceName;
|
||||
/* */ private String deviceTypeId;
|
||||
/* */ private String deviceTypeName;
|
||||
/* */ private String districtId;
|
||||
/* */ private String areaId;
|
||||
/* */ private String openDoorType;
|
||||
/* */ private String operateName;
|
||||
/* */ private String faceImagePath;
|
||||
/* */ private String panoramaImagePath;
|
||||
/* */ private Integer recordResult;
|
||||
/* */ private String recognitionNo;
|
||||
/* */ private Long recognitionTime;
|
||||
/* */ private String logId;
|
||||
/* */ private String recognitionFaceId;
|
||||
/* */ private String srcFloor;
|
||||
/* */ private String destFloor;
|
||||
/* */ private String dispatchElevatorNo;
|
||||
/* */ private Long dispatchElevatorTime;
|
||||
/* */ private Integer isVisitor;
|
||||
/* */ private String interviewee;
|
||||
/* */ private String personCode;
|
||||
/* */ private String orgId;
|
||||
/* */ private String orgName;
|
||||
/* */ private static final long serialVersionUID = 1L;
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 150 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 154 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 158 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 162 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 166 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 170 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 174 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 178 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeId() {
|
||||
/* 182 */ return this.deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 186 */ this.deviceTypeId = deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeName() {
|
||||
/* 190 */ return this.deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeName(String deviceTypeName) {
|
||||
/* 194 */ this.deviceTypeName = deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictId() {
|
||||
/* 198 */ return this.districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictId(String districtId) {
|
||||
/* 202 */ this.districtId = districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaId() {
|
||||
/* 206 */ return this.areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaId(String areaId) {
|
||||
/* 210 */ this.areaId = areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOpenDoorType() {
|
||||
/* 214 */ return this.openDoorType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOpenDoorType(String openDoorType) {
|
||||
/* 218 */ this.openDoorType = openDoorType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOperateName() {
|
||||
/* 222 */ return this.operateName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOperateName(String operateName) {
|
||||
/* 226 */ this.operateName = operateName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceImagePath() {
|
||||
/* 230 */ return this.faceImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceImagePath(String faceImagePath) {
|
||||
/* 234 */ this.faceImagePath = faceImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPanoramaImagePath() {
|
||||
/* 238 */ return this.panoramaImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPanoramaImagePath(String panoramaImagePath) {
|
||||
/* 242 */ this.panoramaImagePath = panoramaImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecordResult() {
|
||||
/* 246 */ return this.recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecordResult(Integer recordResult) {
|
||||
/* 250 */ this.recordResult = recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRecognitionNo() {
|
||||
/* 254 */ return this.recognitionNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionNo(String recognitionNo) {
|
||||
/* 258 */ this.recognitionNo = recognitionNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getRecognitionTime() {
|
||||
/* 262 */ return this.recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionTime(Long recognitionTime) {
|
||||
/* 266 */ this.recognitionTime = recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLogId() {
|
||||
/* 270 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 274 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRecognitionFaceId() {
|
||||
/* 278 */ return this.recognitionFaceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionFaceId(String recognitionFaceId) {
|
||||
/* 282 */ this.recognitionFaceId = recognitionFaceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSrcFloor() {
|
||||
/* 286 */ return this.srcFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSrcFloor(String srcFloor) {
|
||||
/* 290 */ this.srcFloor = srcFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDestFloor() {
|
||||
/* 294 */ return this.destFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDestFloor(String destFloor) {
|
||||
/* 298 */ this.destFloor = destFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDispatchElevatorNo() {
|
||||
/* 302 */ return this.dispatchElevatorNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDispatchElevatorNo(String dispatchElevatorNo) {
|
||||
/* 306 */ this.dispatchElevatorNo = dispatchElevatorNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getDispatchElevatorTime() {
|
||||
/* 310 */ return this.dispatchElevatorTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDispatchElevatorTime(Long dispatchElevatorTime) {
|
||||
/* 314 */ this.dispatchElevatorTime = dispatchElevatorTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getIsVisitor() {
|
||||
/* 318 */ return this.isVisitor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsVisitor(Integer isVisitor) {
|
||||
/* 322 */ this.isVisitor = isVisitor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getInterviewee() {
|
||||
/* 326 */ return this.interviewee;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setInterviewee(String interviewee) {
|
||||
/* 330 */ this.interviewee = interviewee;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonCode() {
|
||||
/* 334 */ return this.personCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonCode(String personCode) {
|
||||
/* 338 */ this.personCode = personCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgId() {
|
||||
/* 342 */ return this.orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgId(String orgId) {
|
||||
/* 346 */ this.orgId = orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgName() {
|
||||
/* 350 */ return this.orgName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgName(String orgName) {
|
||||
/* 354 */ this.orgName = orgName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String toString() {
|
||||
/* 359 */ return "AcsElevatorRecordAddDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceName='" + this.deviceName + '\'' + ", deviceTypeId='" + this.deviceTypeId + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionTime=" + this.recognitionTime + ", logId='" + this.logId + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + ", srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorRecordAddDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+228
@@ -0,0 +1,228 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorRecordDetailQueryDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private String businessId;
|
||||
/* */ private Long startTime;
|
||||
/* */ private Long endTime;
|
||||
/* */ private String personName;
|
||||
/* */ private String personId;
|
||||
/* */ private List<String> districtIds;
|
||||
/* */ private List<String> areaIds;
|
||||
/* */ private List<String> deviceIds;
|
||||
/* */ private String openDoorTypeCode;
|
||||
/* */ private Integer recordResult;
|
||||
/* */ private String srcFloor;
|
||||
/* */ private String destFloor;
|
||||
/* */ private String dispatchElevatorNo;
|
||||
/* */ private String personCode;
|
||||
/* */ private String orgId;
|
||||
/* */ private Integer isVisitor;
|
||||
/* */
|
||||
/* */ public Integer getIsVisitor() {
|
||||
/* 96 */ return this.isVisitor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsVisitor(Integer isVisitor) {
|
||||
/* 100 */ this.isVisitor = isVisitor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonCode() {
|
||||
/* 104 */ return this.personCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonCode(String personCode) {
|
||||
/* 108 */ this.personCode = personCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgId() {
|
||||
/* 112 */ return this.orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgId(String orgId) {
|
||||
/* 116 */ this.orgId = orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 120 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 124 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getStartTime() {
|
||||
/* 128 */ return this.startTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStartTime(Long startTime) {
|
||||
/* 132 */ this.startTime = startTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getEndTime() {
|
||||
/* 136 */ return this.endTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEndTime(Long endTime) {
|
||||
/* 140 */ this.endTime = endTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonName() {
|
||||
/* 144 */ return this.personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonName(String personName) {
|
||||
/* 148 */ this.personName = personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getDistrictIds() {
|
||||
/* 152 */ return this.districtIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictIds(List<String> districtIds) {
|
||||
/* 156 */ this.districtIds = districtIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getDeviceIds() {
|
||||
/* 160 */ return this.deviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceIds(List<String> deviceIds) {
|
||||
/* 164 */ this.deviceIds = deviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public List<String> getAreaIds() {
|
||||
/* 168 */ return this.areaIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaIds(List<String> areaIds) {
|
||||
/* 172 */ this.areaIds = areaIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOpenDoorTypeCode() {
|
||||
/* 176 */ return this.openDoorTypeCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOpenDoorTypeCode(String openDoorTypeCode) {
|
||||
/* 180 */ this.openDoorTypeCode = openDoorTypeCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecordResult() {
|
||||
/* 184 */ return this.recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecordResult(Integer recordResult) {
|
||||
/* 188 */ this.recordResult = recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSrcFloor() {
|
||||
/* 192 */ return this.srcFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSrcFloor(String srcFloor) {
|
||||
/* 196 */ this.srcFloor = srcFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDestFloor() {
|
||||
/* 200 */ return this.destFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDestFloor(String destFloor) {
|
||||
/* 204 */ this.destFloor = destFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDispatchElevatorNo() {
|
||||
/* 208 */ return this.dispatchElevatorNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDispatchElevatorNo(String dispatchElevatorNo) {
|
||||
/* 212 */ this.dispatchElevatorNo = dispatchElevatorNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 216 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 220 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorRecordDetailQueryDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+535
@@ -0,0 +1,535 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.elevator.annontation.DavinciPic;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.math.BigDecimal;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorRecordDetailQueryResultDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private String openDoorId;
|
||||
/* */ private String panoramaImageRecog;
|
||||
/* */ private String panoramaImageOpen;
|
||||
/* */ private String faceImage;
|
||||
/* */ @DavinciPic
|
||||
/* */ private String registerImage;
|
||||
/* */ private String personName;
|
||||
/* */ private long recognitionTime;
|
||||
/* */ private String districtId;
|
||||
/* */ private String areaId;
|
||||
/* */ private String deviceTypeName;
|
||||
/* */ private String deviceId;
|
||||
/* */ private String deviceCode;
|
||||
/* */ private String deviceName;
|
||||
/* */ private String openDoorType;
|
||||
/* */ private String operateName;
|
||||
/* */ private BigDecimal score;
|
||||
/* */ private Integer recordResult;
|
||||
/* */ private String recognitionNo;
|
||||
/* */ private String recognitionFaceId;
|
||||
/* */ private String personId;
|
||||
/* */ private Integer isVisitor;
|
||||
/* */ private String interviewee;
|
||||
/* */ private String regRecordId;
|
||||
/* */ private BigDecimal threshold;
|
||||
/* */ private Integer recognitionResult;
|
||||
/* */ private String groupId;
|
||||
/* */ private String faceId;
|
||||
/* */ private BigDecimal qualityScore;
|
||||
/* */ private String logId;
|
||||
/* */ private BigDecimal tempScore;
|
||||
/* */ private BigDecimal maskScore;
|
||||
/* */ private BigDecimal tempThreshold;
|
||||
/* */ private String srcFloor;
|
||||
/* */ private String destFloor;
|
||||
/* */ private String dispatchElevatorNo;
|
||||
/* */ private Long dispatchElevatorTime;
|
||||
/* */ private String personCode;
|
||||
/* */ private String orgId;
|
||||
/* */ private String orgName;
|
||||
/* */
|
||||
/* */ public String getPersonCode() {
|
||||
/* 214 */ return this.personCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonCode(String personCode) {
|
||||
/* 218 */ this.personCode = personCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgId() {
|
||||
/* 222 */ return this.orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgId(String orgId) {
|
||||
/* 226 */ this.orgId = orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgName() {
|
||||
/* 230 */ return this.orgName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgName(String orgName) {
|
||||
/* 234 */ this.orgName = orgName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOpenDoorId() {
|
||||
/* 238 */ return this.openDoorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOpenDoorId(String openDoorId) {
|
||||
/* 242 */ this.openDoorId = openDoorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPanoramaImageRecog() {
|
||||
/* 246 */ return this.panoramaImageRecog;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPanoramaImageRecog(String panoramaImageRecog) {
|
||||
/* 250 */ this.panoramaImageRecog = panoramaImageRecog;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPanoramaImageOpen() {
|
||||
/* 254 */ return this.panoramaImageOpen;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPanoramaImageOpen(String panoramaImageOpen) {
|
||||
/* 258 */ this.panoramaImageOpen = panoramaImageOpen;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceImage() {
|
||||
/* 262 */ return this.faceImage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceImage(String faceImage) {
|
||||
/* 266 */ this.faceImage = faceImage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRegisterImage() {
|
||||
/* 270 */ return this.registerImage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRegisterImage(String registerImage) {
|
||||
/* 274 */ this.registerImage = registerImage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonName() {
|
||||
/* 278 */ return this.personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonName(String personName) {
|
||||
/* 282 */ this.personName = personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public long getRecognitionTime() {
|
||||
/* 286 */ return this.recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionTime(long recognitionTime) {
|
||||
/* 290 */ this.recognitionTime = recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictId() {
|
||||
/* 294 */ return this.districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictId(String districtId) {
|
||||
/* 298 */ this.districtId = districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaId() {
|
||||
/* 302 */ return this.areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaId(String areaId) {
|
||||
/* 306 */ this.areaId = areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeName() {
|
||||
/* 310 */ return this.deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeName(String deviceTypeName) {
|
||||
/* 314 */ this.deviceTypeName = deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 318 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 322 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOpenDoorType() {
|
||||
/* 326 */ return this.openDoorType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOpenDoorType(String openDoorType) {
|
||||
/* 330 */ this.openDoorType = openDoorType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOperateName() {
|
||||
/* 334 */ return this.operateName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOperateName(String operateName) {
|
||||
/* 338 */ this.operateName = operateName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getScore() {
|
||||
/* 342 */ return this.score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setScore(BigDecimal score) {
|
||||
/* 346 */ this.score = score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecordResult() {
|
||||
/* 350 */ return this.recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecordResult(Integer recordResult) {
|
||||
/* 354 */ this.recordResult = recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRecognitionNo() {
|
||||
/* 358 */ return this.recognitionNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionNo(String recognitionNo) {
|
||||
/* 362 */ this.recognitionNo = recognitionNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRegRecordId() {
|
||||
/* 366 */ return this.regRecordId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRegRecordId(String regRecordId) {
|
||||
/* 370 */ this.regRecordId = regRecordId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getThreshold() {
|
||||
/* 374 */ return this.threshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setThreshold(BigDecimal threshold) {
|
||||
/* 378 */ this.threshold = threshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecognitionResult() {
|
||||
/* 382 */ return this.recognitionResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionResult(Integer recognitionResult) {
|
||||
/* 386 */ this.recognitionResult = recognitionResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getGroupId() {
|
||||
/* 390 */ return this.groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupId(String groupId) {
|
||||
/* 394 */ this.groupId = groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceId() {
|
||||
/* 398 */ return this.faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceId(String faceId) {
|
||||
/* 402 */ this.faceId = faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getQualityScore() {
|
||||
/* 406 */ return this.qualityScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setQualityScore(BigDecimal qualityScore) {
|
||||
/* 410 */ this.qualityScore = qualityScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLogId() {
|
||||
/* 414 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 418 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getTempScore() {
|
||||
/* 422 */ return this.tempScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTempScore(BigDecimal tempScore) {
|
||||
/* 426 */ this.tempScore = tempScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getMaskScore() {
|
||||
/* 430 */ return this.maskScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setMaskScore(BigDecimal maskScore) {
|
||||
/* 434 */ this.maskScore = maskScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getTempThreshold() {
|
||||
/* 438 */ return this.tempThreshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTempThreshold(BigDecimal tempThreshold) {
|
||||
/* 442 */ this.tempThreshold = tempThreshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSrcFloor() {
|
||||
/* 446 */ return this.srcFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSrcFloor(String srcFloor) {
|
||||
/* 450 */ this.srcFloor = srcFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDestFloor() {
|
||||
/* 454 */ return this.destFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDestFloor(String destFloor) {
|
||||
/* 458 */ this.destFloor = destFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDispatchElevatorNo() {
|
||||
/* 462 */ return this.dispatchElevatorNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDispatchElevatorNo(String dispatchElevatorNo) {
|
||||
/* 466 */ this.dispatchElevatorNo = dispatchElevatorNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getDispatchElevatorTime() {
|
||||
/* 470 */ return this.dispatchElevatorTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDispatchElevatorTime(Long dispatchElevatorTime) {
|
||||
/* 474 */ this.dispatchElevatorTime = dispatchElevatorTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRecognitionFaceId() {
|
||||
/* 478 */ return this.recognitionFaceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionFaceId(String recognitionFaceId) {
|
||||
/* 482 */ this.recognitionFaceId = recognitionFaceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getIsVisitor() {
|
||||
/* 486 */ return this.isVisitor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsVisitor(Integer isVisitor) {
|
||||
/* 490 */ this.isVisitor = isVisitor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getInterviewee() {
|
||||
/* 494 */ return this.interviewee;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setInterviewee(String interviewee) {
|
||||
/* 498 */ this.interviewee = interviewee;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 502 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 506 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 510 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 514 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 518 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 522 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String toString() {
|
||||
/* 527 */ return "AcsElevatorRecordDetailQueryResultDTO{openDoorId='" + this.openDoorId + '\'' + ", panoramaImageRecog='" + this.panoramaImageRecog + '\'' + ", panoramaImageOpen='" + this.panoramaImageOpen + '\'' + ", faceImage='" + this.faceImage + '\'' + ", registerImage='" + this.registerImage + '\'' + ", personName='" + this.personName + '\'' + ", recognitionTime=" + this.recognitionTime + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", deviceName='" + this.deviceName + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", score=" + this.score + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + ", isVisitor=" + this.isVisitor + ", interviewee=" + this.interviewee + ", regRecordId='" + this.regRecordId + '\'' + ", threshold=" + this.threshold + ", recognitionResult=" + this.recognitionResult + ", groupId='" + this.groupId + '\'' + ", faceId='" + this.faceId + '\'' + ", qualityScore=" + this.qualityScore + ", logId='" + this.logId + '\'' + ", tempScore=" + this.tempScore + ", maskScore=" + this.maskScore + ", tempThreshold=" + this.tempThreshold + ", srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorRecordDetailQueryResultDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorRecordExtraDTO
|
||||
/* */ {
|
||||
/* */ private String srcFloor;
|
||||
/* */ private String destFloor;
|
||||
/* */ private String dispatchElevatorNo;
|
||||
/* */ private Long dispatchElevatorTime;
|
||||
/* */
|
||||
/* */ public String getSrcFloor() {
|
||||
/* 32 */ return this.srcFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSrcFloor(String srcFloor) {
|
||||
/* 36 */ this.srcFloor = srcFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDestFloor() {
|
||||
/* 40 */ return this.destFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDestFloor(String destFloor) {
|
||||
/* 44 */ this.destFloor = destFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDispatchElevatorNo() {
|
||||
/* 48 */ return this.dispatchElevatorNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDispatchElevatorNo(String dispatchElevatorNo) {
|
||||
/* 52 */ this.dispatchElevatorNo = dispatchElevatorNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getDispatchElevatorTime() {
|
||||
/* 56 */ return this.dispatchElevatorTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDispatchElevatorTime(Long dispatchElevatorTime) {
|
||||
/* 60 */ this.dispatchElevatorTime = dispatchElevatorTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String toString() {
|
||||
/* 65 */ return "AcsElevatorRecordExtraDTO{srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorRecordExtraDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+368
@@ -0,0 +1,368 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsElevatorRecordQueryResultDTO
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = -761586737506722816L;
|
||||
/* */ private String businessId;
|
||||
/* */ private String deviceId;
|
||||
/* */ private String deviceCode;
|
||||
/* */ private String deviceName;
|
||||
/* */ private String deviceTypeId;
|
||||
/* */ private String deviceTypeName;
|
||||
/* */ private String districtId;
|
||||
/* */ private String areaId;
|
||||
/* */ private String openDoorType;
|
||||
/* */ private String operateName;
|
||||
/* */ private String faceImagePath;
|
||||
/* */ private String panoramaImagePath;
|
||||
/* */ private Integer recordResult;
|
||||
/* */ private String recognitionNo;
|
||||
/* */ private Long recognitionTime;
|
||||
/* */ private String logId;
|
||||
/* */ private String recognitionFaceId;
|
||||
/* */ private String srcFloor;
|
||||
/* */ private String destFloor;
|
||||
/* */ private String dispatchElevatorNo;
|
||||
/* */ private Long dispatchElevatorTime;
|
||||
/* */ private Integer isVisitor;
|
||||
/* */ private String interviewee;
|
||||
/* */ private String personCode;
|
||||
/* */ private String orgId;
|
||||
/* */ private String orgName;
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 151 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 155 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 159 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 163 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 167 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 171 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 175 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 179 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeId() {
|
||||
/* 183 */ return this.deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 187 */ this.deviceTypeId = deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeName() {
|
||||
/* 191 */ return this.deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeName(String deviceTypeName) {
|
||||
/* 195 */ this.deviceTypeName = deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictId() {
|
||||
/* 199 */ return this.districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictId(String districtId) {
|
||||
/* 203 */ this.districtId = districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaId() {
|
||||
/* 207 */ return this.areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaId(String areaId) {
|
||||
/* 211 */ this.areaId = areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOpenDoorType() {
|
||||
/* 215 */ return this.openDoorType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOpenDoorType(String openDoorType) {
|
||||
/* 219 */ this.openDoorType = openDoorType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOperateName() {
|
||||
/* 223 */ return this.operateName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOperateName(String operateName) {
|
||||
/* 227 */ this.operateName = operateName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceImagePath() {
|
||||
/* 231 */ return this.faceImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceImagePath(String faceImagePath) {
|
||||
/* 235 */ this.faceImagePath = faceImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPanoramaImagePath() {
|
||||
/* 239 */ return this.panoramaImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPanoramaImagePath(String panoramaImagePath) {
|
||||
/* 243 */ this.panoramaImagePath = panoramaImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecordResult() {
|
||||
/* 247 */ return this.recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecordResult(Integer recordResult) {
|
||||
/* 251 */ this.recordResult = recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRecognitionNo() {
|
||||
/* 255 */ return this.recognitionNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionNo(String recognitionNo) {
|
||||
/* 259 */ this.recognitionNo = recognitionNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getRecognitionTime() {
|
||||
/* 263 */ return this.recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionTime(Long recognitionTime) {
|
||||
/* 267 */ this.recognitionTime = recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLogId() {
|
||||
/* 271 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 275 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRecognitionFaceId() {
|
||||
/* 279 */ return this.recognitionFaceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionFaceId(String recognitionFaceId) {
|
||||
/* 283 */ this.recognitionFaceId = recognitionFaceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSrcFloor() {
|
||||
/* 287 */ return this.srcFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSrcFloor(String srcFloor) {
|
||||
/* 291 */ this.srcFloor = srcFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDestFloor() {
|
||||
/* 295 */ return this.destFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDestFloor(String destFloor) {
|
||||
/* 299 */ this.destFloor = destFloor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDispatchElevatorNo() {
|
||||
/* 303 */ return this.dispatchElevatorNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDispatchElevatorNo(String dispatchElevatorNo) {
|
||||
/* 307 */ this.dispatchElevatorNo = dispatchElevatorNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getDispatchElevatorTime() {
|
||||
/* 311 */ return this.dispatchElevatorTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDispatchElevatorTime(Long dispatchElevatorTime) {
|
||||
/* 315 */ this.dispatchElevatorTime = dispatchElevatorTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getIsVisitor() {
|
||||
/* 319 */ return this.isVisitor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setIsVisitor(Integer isVisitor) {
|
||||
/* 323 */ this.isVisitor = isVisitor;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getInterviewee() {
|
||||
/* 327 */ return this.interviewee;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setInterviewee(String interviewee) {
|
||||
/* 331 */ this.interviewee = interviewee;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonCode() {
|
||||
/* 335 */ return this.personCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonCode(String personCode) {
|
||||
/* 339 */ this.personCode = personCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgId() {
|
||||
/* 343 */ return this.orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgId(String orgId) {
|
||||
/* 347 */ this.orgId = orgId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOrgName() {
|
||||
/* 351 */ return this.orgName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOrgName(String orgName) {
|
||||
/* 355 */ this.orgName = orgName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String toString() {
|
||||
/* 360 */ return "AcsElevatorRecordQueryResultDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceName='" + this.deviceName + '\'' + ", deviceTypeId='" + this.deviceTypeId + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionTime=" + this.recognitionTime + ", logId='" + this.logId + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + ", srcFloor='" + this.srcFloor + '\'' + ", destFloor='" + this.destFloor + '\'' + ", dispatchElevatorNo='" + this.dispatchElevatorNo + '\'' + ", dispatchElevatorTime=" + this.dispatchElevatorTime + '}';
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsElevatorRecordQueryResultDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+212
@@ -0,0 +1,212 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsOpenDoorRecordEditDTO
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = 885170301572808321L;
|
||||
/* */ private String businessId;
|
||||
/* */ private String deviceId;
|
||||
/* */ private String deviceCode;
|
||||
/* */ private String openDoorType;
|
||||
/* */ private String operateName;
|
||||
/* */ private String faceImagePath;
|
||||
/* */ private String panoramaImagePath;
|
||||
/* */ private Integer recordResult;
|
||||
/* */ private String recognitionNo;
|
||||
/* */ private Long recognitionTime;
|
||||
/* */ private String logId;
|
||||
/* */ private String recognitionFaceId;
|
||||
/* */ private Long startDay;
|
||||
/* */ private Long endDay;
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 91 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 95 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 99 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 103 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 107 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 111 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOpenDoorType() {
|
||||
/* 115 */ return this.openDoorType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOpenDoorType(String openDoorType) {
|
||||
/* 119 */ this.openDoorType = openDoorType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOperateName() {
|
||||
/* 123 */ return this.operateName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOperateName(String operateName) {
|
||||
/* 127 */ this.operateName = operateName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceImagePath() {
|
||||
/* 131 */ return this.faceImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceImagePath(String faceImagePath) {
|
||||
/* 135 */ this.faceImagePath = faceImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPanoramaImagePath() {
|
||||
/* 139 */ return this.panoramaImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPanoramaImagePath(String panoramaImagePath) {
|
||||
/* 143 */ this.panoramaImagePath = panoramaImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecordResult() {
|
||||
/* 147 */ return this.recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecordResult(Integer recordResult) {
|
||||
/* 151 */ this.recordResult = recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRecognitionNo() {
|
||||
/* 155 */ return this.recognitionNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionNo(String recognitionNo) {
|
||||
/* 159 */ this.recognitionNo = recognitionNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getRecognitionTime() {
|
||||
/* 163 */ return this.recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionTime(Long recognitionTime) {
|
||||
/* 167 */ this.recognitionTime = recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLogId() {
|
||||
/* 171 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 175 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRecognitionFaceId() {
|
||||
/* 179 */ return this.recognitionFaceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionFaceId(String recognitionFaceId) {
|
||||
/* 183 */ this.recognitionFaceId = recognitionFaceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getStartDay() {
|
||||
/* 187 */ return this.startDay;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStartDay(Long startDay) {
|
||||
/* 191 */ this.startDay = startDay;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getEndDay() {
|
||||
/* 195 */ return this.endDay;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEndDay(Long endDay) {
|
||||
/* 199 */ this.endDay = endDay;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String toString() {
|
||||
/* 204 */ return "AcsOpenDoorRecordEditDTO{businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", openDoorType='" + this.openDoorType + '\'' + ", operateName='" + this.operateName + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", recordResult=" + this.recordResult + ", recognitionNo='" + this.recognitionNo + '\'' + ", recognitionTime=" + this.recognitionTime + ", logId='" + this.logId + '\'' + ", recognitionFaceId='" + this.recognitionFaceId + '\'' + ", startDay=" + this.startDay + ", endDay=" + this.endDay + '}';
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsOpenDoorRecordEditDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+100
@@ -0,0 +1,100 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsOpenDoorRecordQueryDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = 2759536962618796129L;
|
||||
/* */ private String id;
|
||||
/* */ private String businessId;
|
||||
/* */ private Long startDay;
|
||||
/* */ private Long endDay;
|
||||
/* */ private Integer recordResult;
|
||||
/* */ private String logId;
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 48 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 52 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 56 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 60 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getStartDay() {
|
||||
/* 64 */ return this.startDay;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStartDay(Long startDay) {
|
||||
/* 68 */ this.startDay = startDay;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getEndDay() {
|
||||
/* 72 */ return this.endDay;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEndDay(Long endDay) {
|
||||
/* 76 */ this.endDay = endDay;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecordResult() {
|
||||
/* 80 */ return this.recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecordResult(Integer recordResult) {
|
||||
/* 84 */ this.recordResult = recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLogId() {
|
||||
/* 88 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 92 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsOpenDoorRecordQueryDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsPersonInfoResultDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private String id;
|
||||
/* */ private String comparePicture;
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 26 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 30 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getComparePicture() {
|
||||
/* 34 */ return this.comparePicture;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setComparePicture(String comparePicture) {
|
||||
/* 38 */ this.comparePicture = comparePicture;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsPersonInfoResultDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+463
@@ -0,0 +1,463 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.entity.CloudwalkBaseTimes;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.math.BigDecimal;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsRecogRecordAddDTO
|
||||
/* */ extends CloudwalkBaseTimes
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private String personId;
|
||||
/* */ private String personName;
|
||||
/* */ private String businessId;
|
||||
/* */ private String deviceId;
|
||||
/* */ private String deviceCode;
|
||||
/* */ private String deviceName;
|
||||
/* */ private BigDecimal threshold;
|
||||
/* */ private String districtId;
|
||||
/* */ private String areaId;
|
||||
/* */ private String deviceTypeId;
|
||||
/* */ private String deviceTypeName;
|
||||
/* */ private String subDeviceId;
|
||||
/* */ private String subDeviceCode;
|
||||
/* */ private String subDeviceName;
|
||||
/* */ private String subDeviceTypeId;
|
||||
/* */ private String subDeviceTypeName;
|
||||
/* */ private String registerImagePath;
|
||||
/* */ private String faceImagePath;
|
||||
/* */ private String panoramaImagePath;
|
||||
/* */ private BigDecimal score;
|
||||
/* */ private Integer recognitionResult;
|
||||
/* */ private Long recognitionTime;
|
||||
/* */ private String groupId;
|
||||
/* */ private String faceId;
|
||||
/* */ private BigDecimal qualityScore;
|
||||
/* */ private String logId;
|
||||
/* */ private BigDecimal tempScore;
|
||||
/* */ private BigDecimal maskScore;
|
||||
/* */ private BigDecimal tempThreshold;
|
||||
/* */ private String cardType;
|
||||
/* */ private Integer source;
|
||||
/* */ private String tempImagePath;
|
||||
/* */ private String remark;
|
||||
/* */ private String personLabelIds;
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 182 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 186 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonName() {
|
||||
/* 190 */ return this.personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonName(String personName) {
|
||||
/* 194 */ this.personName = personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 198 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 202 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 206 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 210 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 214 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 218 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 222 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 226 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getThreshold() {
|
||||
/* 230 */ return this.threshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setThreshold(BigDecimal threshold) {
|
||||
/* 234 */ this.threshold = threshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictId() {
|
||||
/* 238 */ return this.districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictId(String districtId) {
|
||||
/* 242 */ this.districtId = districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaId() {
|
||||
/* 246 */ return this.areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaId(String areaId) {
|
||||
/* 250 */ this.areaId = areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeId() {
|
||||
/* 254 */ return this.deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 258 */ this.deviceTypeId = deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeName() {
|
||||
/* 262 */ return this.deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeName(String deviceTypeName) {
|
||||
/* 266 */ this.deviceTypeName = deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRegisterImagePath() {
|
||||
/* 270 */ return this.registerImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRegisterImagePath(String registerImagePath) {
|
||||
/* 274 */ this.registerImagePath = registerImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceImagePath() {
|
||||
/* 278 */ return this.faceImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceImagePath(String faceImagePath) {
|
||||
/* 282 */ this.faceImagePath = faceImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPanoramaImagePath() {
|
||||
/* 286 */ return this.panoramaImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPanoramaImagePath(String panoramaImagePath) {
|
||||
/* 290 */ this.panoramaImagePath = panoramaImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getScore() {
|
||||
/* 294 */ return this.score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setScore(BigDecimal score) {
|
||||
/* 298 */ this.score = score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecognitionResult() {
|
||||
/* 302 */ return this.recognitionResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionResult(Integer recognitionResult) {
|
||||
/* 306 */ this.recognitionResult = recognitionResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getRecognitionTime() {
|
||||
/* 310 */ return this.recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionTime(Long recognitionTime) {
|
||||
/* 314 */ this.recognitionTime = recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getGroupId() {
|
||||
/* 318 */ return this.groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupId(String groupId) {
|
||||
/* 322 */ this.groupId = groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceId() {
|
||||
/* 326 */ return this.faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceId(String faceId) {
|
||||
/* 330 */ this.faceId = faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getQualityScore() {
|
||||
/* 334 */ return this.qualityScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setQualityScore(BigDecimal qualityScore) {
|
||||
/* 338 */ this.qualityScore = qualityScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLogId() {
|
||||
/* 342 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 346 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getTempScore() {
|
||||
/* 350 */ return this.tempScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTempScore(BigDecimal tempScore) {
|
||||
/* 354 */ this.tempScore = tempScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getMaskScore() {
|
||||
/* 358 */ return this.maskScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setMaskScore(BigDecimal maskScore) {
|
||||
/* 362 */ this.maskScore = maskScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getTempThreshold() {
|
||||
/* 366 */ return this.tempThreshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTempThreshold(BigDecimal tempThreshold) {
|
||||
/* 370 */ this.tempThreshold = tempThreshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCardType() {
|
||||
/* 374 */ return this.cardType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCardType(String cardType) {
|
||||
/* 378 */ this.cardType = cardType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getSource() {
|
||||
/* 382 */ return this.source;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSource(Integer source) {
|
||||
/* 386 */ this.source = source;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getTempImagePath() {
|
||||
/* 390 */ return this.tempImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTempImagePath(String tempImagePath) {
|
||||
/* 394 */ this.tempImagePath = tempImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRemark() {
|
||||
/* 398 */ return this.remark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRemark(String remark) {
|
||||
/* 402 */ this.remark = remark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSubDeviceId() {
|
||||
/* 406 */ return this.subDeviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceId(String subDeviceId) {
|
||||
/* 410 */ this.subDeviceId = subDeviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSubDeviceCode() {
|
||||
/* 414 */ return this.subDeviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceCode(String subDeviceCode) {
|
||||
/* 418 */ this.subDeviceCode = subDeviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSubDeviceName() {
|
||||
/* 422 */ return this.subDeviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceName(String subDeviceName) {
|
||||
/* 426 */ this.subDeviceName = subDeviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSubDeviceTypeId() {
|
||||
/* 430 */ return this.subDeviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceTypeId(String subDeviceTypeId) {
|
||||
/* 434 */ this.subDeviceTypeId = subDeviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSubDeviceTypeName() {
|
||||
/* 438 */ return this.subDeviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceTypeName(String subDeviceTypeName) {
|
||||
/* 442 */ this.subDeviceTypeName = subDeviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonLabelIds() {
|
||||
/* 446 */ return this.personLabelIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonLabelIds(String personLabelIds) {
|
||||
/* 450 */ this.personLabelIds = personLabelIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String toString() {
|
||||
/* 455 */ return "AcsRecogRecordAddDTO{personId='" + this.personId + '\'' + ", personName='" + this.personName + '\'' + ", businessId='" + this.businessId + '\'' + ", deviceId='" + this.deviceId + '\'' + ", deviceCode='" + this.deviceCode + '\'' + ", deviceName='" + this.deviceName + '\'' + ", threshold=" + this.threshold + ", districtId='" + this.districtId + '\'' + ", areaId='" + this.areaId + '\'' + ", deviceTypeId='" + this.deviceTypeId + '\'' + ", deviceTypeName='" + this.deviceTypeName + '\'' + ", subDeviceId='" + this.subDeviceId + '\'' + ", subDeviceCode='" + this.subDeviceCode + '\'' + ", subDeviceName='" + this.subDeviceName + '\'' + ", subDeviceTypeId='" + this.subDeviceTypeId + '\'' + ", subDeviceTypeName='" + this.subDeviceTypeName + '\'' + ", registerImagePath='" + this.registerImagePath + '\'' + ", faceImagePath='" + this.faceImagePath + '\'' + ", panoramaImagePath='" + this.panoramaImagePath + '\'' + ", score=" + this.score + ", recognitionResult=" + this.recognitionResult + ", recognitionTime=" + this.recognitionTime + ", groupId='" + this.groupId + '\'' + ", faceId='" + this.faceId + '\'' + ", qualityScore=" + this.qualityScore + ", logId='" + this.logId + '\'' + ", tempScore=" + this.tempScore + ", maskScore=" + this.maskScore + ", tempThreshold=" + this.tempThreshold + ", cardType='" + this.cardType + '\'' + ", source=" + this.source + ", tempImagePath='" + this.tempImagePath + '\'' + ", remark='" + this.remark + '\'' + ", personLabelIds='" + this.personLabelIds + '\'' + '}';
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsRecogRecordAddDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+75
@@ -0,0 +1,75 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.util.List;
|
||||
/* */
|
||||
/* */ public class AcsRecogRecordPageDTO implements Serializable {
|
||||
/* */ private String businessId;
|
||||
/* */ private Long startTime;
|
||||
/* */ private Long endTime;
|
||||
/* */ private String personName;
|
||||
/* */ private String logId;
|
||||
/* */ private List<String> districtIds;
|
||||
/* */ private List<String> areaIds;
|
||||
/* */ private List<String> deviceIds;
|
||||
/* */ private Integer recognitionResult;
|
||||
/* */ private Integer compareType;
|
||||
/* */
|
||||
/* 18 */ public void setBusinessId(String businessId) { this.businessId = businessId; } public void setStartTime(Long startTime) { this.startTime = startTime; } public void setEndTime(Long endTime) { this.endTime = endTime; } public void setPersonName(String personName) { this.personName = personName; } public void setLogId(String logId) { this.logId = logId; } public void setDistrictIds(List<String> districtIds) { this.districtIds = districtIds; } public void setAreaIds(List<String> areaIds) { this.areaIds = areaIds; } public void setDeviceIds(List<String> deviceIds) { this.deviceIds = deviceIds; } public void setRecognitionResult(Integer recognitionResult) { this.recognitionResult = recognitionResult; } public void setCompareType(Integer compareType) { this.compareType = compareType; }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 23 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getStartTime() {
|
||||
/* 27 */ return this.startTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Long getEndTime() {
|
||||
/* 32 */ return this.endTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getPersonName() {
|
||||
/* 37 */ return this.personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String getLogId() {
|
||||
/* 42 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<String> getDistrictIds() {
|
||||
/* 47 */ return this.districtIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<String> getAreaIds() {
|
||||
/* 52 */ return this.areaIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<String> getDeviceIds() {
|
||||
/* 57 */ return this.deviceIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer getRecognitionResult() {
|
||||
/* 62 */ return this.recognitionResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer getCompareType() {
|
||||
/* 67 */ return this.compareType;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsRecogRecordPageDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+534
@@ -0,0 +1,534 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.math.BigDecimal;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsRecogRecordResultDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private String id;
|
||||
/* */ private String personId;
|
||||
/* */ private String personName;
|
||||
/* */ private String businessId;
|
||||
/* */ private String deviceId;
|
||||
/* */ private String deviceCode;
|
||||
/* */ private String deviceName;
|
||||
/* */ private BigDecimal threshold;
|
||||
/* */ private String districtId;
|
||||
/* */ private String areaId;
|
||||
/* */ private String deviceTypeId;
|
||||
/* */ private String deviceTypeName;
|
||||
/* */ private String subDeviceId;
|
||||
/* */ private String subDeviceCode;
|
||||
/* */ private String subDeviceName;
|
||||
/* */ private String subDeviceTypeId;
|
||||
/* */ private String subDeviceTypeName;
|
||||
/* */ private String registerImagePath;
|
||||
/* */ private String faceImagePath;
|
||||
/* */ private String panoramaImagePath;
|
||||
/* */ private BigDecimal score;
|
||||
/* */ private Integer recognitionResult;
|
||||
/* */ private Long recognitionTime;
|
||||
/* */ private String groupId;
|
||||
/* */ private String faceId;
|
||||
/* */ private BigDecimal qualityScore;
|
||||
/* */ private String logId;
|
||||
/* */ private BigDecimal tempScore;
|
||||
/* */ private BigDecimal maskScore;
|
||||
/* */ private BigDecimal tempThreshold;
|
||||
/* */ private String remark;
|
||||
/* */ private Long createTime;
|
||||
/* */ private String createUserId;
|
||||
/* */ private Long lastUpdateTime;
|
||||
/* */ private String lastUpdateUserId;
|
||||
/* */ private String personLabelIds;
|
||||
/* */ private static final long serialVersionUID = 1L;
|
||||
/* */
|
||||
/* */ public String getId() {
|
||||
/* 194 */ return this.id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setId(String id) {
|
||||
/* 198 */ this.id = id;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonId() {
|
||||
/* 202 */ return this.personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonId(String personId) {
|
||||
/* 206 */ this.personId = personId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonName() {
|
||||
/* 210 */ return this.personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonName(String personName) {
|
||||
/* 214 */ this.personName = personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 218 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 222 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceId() {
|
||||
/* 226 */ return this.deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceId(String deviceId) {
|
||||
/* 230 */ this.deviceId = deviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceCode() {
|
||||
/* 234 */ return this.deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceCode(String deviceCode) {
|
||||
/* 238 */ this.deviceCode = deviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 242 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 246 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getThreshold() {
|
||||
/* 250 */ return this.threshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setThreshold(BigDecimal threshold) {
|
||||
/* 254 */ this.threshold = threshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictId() {
|
||||
/* 258 */ return this.districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictId(String districtId) {
|
||||
/* 262 */ this.districtId = districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaId() {
|
||||
/* 266 */ return this.areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaId(String areaId) {
|
||||
/* 270 */ this.areaId = areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeId() {
|
||||
/* 274 */ return this.deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeId(String deviceTypeId) {
|
||||
/* 278 */ this.deviceTypeId = deviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeName() {
|
||||
/* 282 */ return this.deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeName(String deviceTypeName) {
|
||||
/* 286 */ this.deviceTypeName = deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRegisterImagePath() {
|
||||
/* 290 */ return this.registerImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRegisterImagePath(String registerImagePath) {
|
||||
/* 294 */ this.registerImagePath = registerImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceImagePath() {
|
||||
/* 298 */ return this.faceImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceImagePath(String faceImagePath) {
|
||||
/* 302 */ this.faceImagePath = faceImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPanoramaImagePath() {
|
||||
/* 306 */ return this.panoramaImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPanoramaImagePath(String panoramaImagePath) {
|
||||
/* 310 */ this.panoramaImagePath = panoramaImagePath;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getScore() {
|
||||
/* 314 */ return this.score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setScore(BigDecimal score) {
|
||||
/* 318 */ this.score = score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecognitionResult() {
|
||||
/* 322 */ return this.recognitionResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionResult(Integer recognitionResult) {
|
||||
/* 326 */ this.recognitionResult = recognitionResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getRecognitionTime() {
|
||||
/* 330 */ return this.recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionTime(Long recognitionTime) {
|
||||
/* 334 */ this.recognitionTime = recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getGroupId() {
|
||||
/* 338 */ return this.groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupId(String groupId) {
|
||||
/* 342 */ this.groupId = groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceId() {
|
||||
/* 346 */ return this.faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceId(String faceId) {
|
||||
/* 350 */ this.faceId = faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getQualityScore() {
|
||||
/* 354 */ return this.qualityScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setQualityScore(BigDecimal qualityScore) {
|
||||
/* 358 */ this.qualityScore = qualityScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLogId() {
|
||||
/* 362 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 366 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getTempScore() {
|
||||
/* 370 */ return this.tempScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTempScore(BigDecimal tempScore) {
|
||||
/* 374 */ this.tempScore = tempScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getMaskScore() {
|
||||
/* 378 */ return this.maskScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setMaskScore(BigDecimal maskScore) {
|
||||
/* 382 */ this.maskScore = maskScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getTempThreshold() {
|
||||
/* 386 */ return this.tempThreshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTempThreshold(BigDecimal tempThreshold) {
|
||||
/* 390 */ this.tempThreshold = tempThreshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRemark() {
|
||||
/* 394 */ return this.remark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRemark(String remark) {
|
||||
/* 398 */ this.remark = remark;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getCreateTime() {
|
||||
/* 402 */ return this.createTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateTime(Long createTime) {
|
||||
/* 406 */ this.createTime = createTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getCreateUserId() {
|
||||
/* 410 */ return this.createUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setCreateUserId(String createUserId) {
|
||||
/* 414 */ this.createUserId = createUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getLastUpdateTime() {
|
||||
/* 418 */ return this.lastUpdateTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateTime(Long lastUpdateTime) {
|
||||
/* 422 */ this.lastUpdateTime = lastUpdateTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLastUpdateUserId() {
|
||||
/* 426 */ return this.lastUpdateUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLastUpdateUserId(String lastUpdateUserId) {
|
||||
/* 430 */ this.lastUpdateUserId = lastUpdateUserId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSubDeviceId() {
|
||||
/* 434 */ return this.subDeviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceId(String subDeviceId) {
|
||||
/* 438 */ this.subDeviceId = subDeviceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSubDeviceCode() {
|
||||
/* 442 */ return this.subDeviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceCode(String subDeviceCode) {
|
||||
/* 446 */ this.subDeviceCode = subDeviceCode;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSubDeviceName() {
|
||||
/* 450 */ return this.subDeviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceName(String subDeviceName) {
|
||||
/* 454 */ this.subDeviceName = subDeviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSubDeviceTypeId() {
|
||||
/* 458 */ return this.subDeviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceTypeId(String subDeviceTypeId) {
|
||||
/* 462 */ this.subDeviceTypeId = subDeviceTypeId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getSubDeviceTypeName() {
|
||||
/* 466 */ return this.subDeviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setSubDeviceTypeName(String subDeviceTypeName) {
|
||||
/* 470 */ this.subDeviceTypeName = subDeviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonLabelIds() {
|
||||
/* 474 */ return this.personLabelIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonLabelIds(String personLabelIds) {
|
||||
/* 478 */ this.personLabelIds = personLabelIds;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public String toString() {
|
||||
/* 483 */ StringBuilder sb = new StringBuilder();
|
||||
/* 484 */ sb.append(getClass().getSimpleName());
|
||||
/* 485 */ sb.append(" [");
|
||||
/* 486 */ sb.append("Hash = ").append(hashCode());
|
||||
/* 487 */ sb.append(", id=").append(this.id);
|
||||
/* 488 */ sb.append(", personId=").append(this.personId);
|
||||
/* 489 */ sb.append(", personName=").append(this.personName);
|
||||
/* 490 */ sb.append(", businessId=").append(this.businessId);
|
||||
/* 491 */ sb.append(", deviceId=").append(this.deviceId);
|
||||
/* 492 */ sb.append(", deviceCode=").append(this.deviceCode);
|
||||
/* 493 */ sb.append(", deviceName=").append(this.deviceName);
|
||||
/* 494 */ sb.append(", threshold=").append(this.threshold);
|
||||
/* 495 */ sb.append(", districtId=").append(this.districtId);
|
||||
/* 496 */ sb.append(", areaId=").append(this.areaId);
|
||||
/* 497 */ sb.append(", deviceTypeId=").append(this.deviceTypeId);
|
||||
/* 498 */ sb.append(", deviceTypeName=").append(this.deviceTypeName);
|
||||
/* */
|
||||
/* 500 */ sb.append(", subDeviceId=").append(this.subDeviceId);
|
||||
/* 501 */ sb.append(", subDeviceCode=").append(this.subDeviceCode);
|
||||
/* 502 */ sb.append(", subDeviceName=").append(this.subDeviceName);
|
||||
/* 503 */ sb.append(", subDeviceTypeId=").append(this.subDeviceTypeId);
|
||||
/* 504 */ sb.append(", subDeviceTypeName=").append(this.subDeviceTypeName);
|
||||
/* */
|
||||
/* 506 */ sb.append(", registerImagePath=").append(this.registerImagePath);
|
||||
/* 507 */ sb.append(", faceImagePath=").append(this.faceImagePath);
|
||||
/* 508 */ sb.append(", panoramaImagePath=").append(this.panoramaImagePath);
|
||||
/* 509 */ sb.append(", score=").append(this.score);
|
||||
/* 510 */ sb.append(", recognitionResult=").append(this.recognitionResult);
|
||||
/* 511 */ sb.append(", recognitionTime=").append(this.recognitionTime);
|
||||
/* 512 */ sb.append(", groupId=").append(this.groupId);
|
||||
/* 513 */ sb.append(", faceId=").append(this.faceId);
|
||||
/* 514 */ sb.append(", qualityScore=").append(this.qualityScore);
|
||||
/* 515 */ sb.append(", logId=").append(this.logId);
|
||||
/* 516 */ sb.append(", tempScore=").append(this.tempScore);
|
||||
/* 517 */ sb.append(", maskScore=").append(this.maskScore);
|
||||
/* 518 */ sb.append(", tempThreshold=").append(this.tempThreshold);
|
||||
/* 519 */ sb.append(", remark=").append(this.remark);
|
||||
/* 520 */ sb.append(", createTime=").append(this.createTime);
|
||||
/* 521 */ sb.append(", createUserId=").append(this.createUserId);
|
||||
/* 522 */ sb.append(", lastUpdateTime=").append(this.lastUpdateTime);
|
||||
/* 523 */ sb.append(", lastUpdateUserId=").append(this.lastUpdateUserId);
|
||||
/* 524 */ sb.append(", personLabelIds=").append(this.personLabelIds);
|
||||
/* 525 */ sb.append("]");
|
||||
/* 526 */ return sb.toString();
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsRecogRecordResultDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+366
@@ -0,0 +1,366 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.elevator.annontation.DavinciPic;
|
||||
/* */ import java.io.Serializable;
|
||||
/* */ import java.math.BigDecimal;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsRecordDetailQueryResultDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = 4497772884928418301L;
|
||||
/* */ private String openDoorId;
|
||||
/* */ private String panoramaImageRecog;
|
||||
/* */ private String panoramaImageOpen;
|
||||
/* */ private String faceImage;
|
||||
/* */ @DavinciPic
|
||||
/* */ private String registerImage;
|
||||
/* */ private String personName;
|
||||
/* */ private long recognitionTime;
|
||||
/* */ private String districtId;
|
||||
/* */ private String areaId;
|
||||
/* */ private String deviceTypeName;
|
||||
/* */ private String deviceName;
|
||||
/* */ private String openDoorType;
|
||||
/* */ private String operateName;
|
||||
/* */ private BigDecimal score;
|
||||
/* */ private Integer recordResult;
|
||||
/* */ private String recognitionNo;
|
||||
/* */ private String regRecordId;
|
||||
/* */ private BigDecimal threshold;
|
||||
/* */ private Integer recognitionResult;
|
||||
/* */ private String groupId;
|
||||
/* */ private String faceId;
|
||||
/* */ private BigDecimal qualityScore;
|
||||
/* */ private String logId;
|
||||
/* */ private BigDecimal tempScore;
|
||||
/* */ private BigDecimal maskScore;
|
||||
/* */ private BigDecimal tempThreshold;
|
||||
/* */
|
||||
/* */ public String getOpenDoorId() {
|
||||
/* 154 */ return this.openDoorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOpenDoorId(String openDoorId) {
|
||||
/* 158 */ this.openDoorId = openDoorId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPanoramaImageRecog() {
|
||||
/* 162 */ return this.panoramaImageRecog;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPanoramaImageRecog(String panoramaImageRecog) {
|
||||
/* 166 */ this.panoramaImageRecog = panoramaImageRecog;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPanoramaImageOpen() {
|
||||
/* 170 */ return this.panoramaImageOpen;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPanoramaImageOpen(String panoramaImageOpen) {
|
||||
/* 174 */ this.panoramaImageOpen = panoramaImageOpen;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceImage() {
|
||||
/* 178 */ return this.faceImage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceImage(String faceImage) {
|
||||
/* 182 */ this.faceImage = faceImage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRegisterImage() {
|
||||
/* 186 */ return this.registerImage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRegisterImage(String registerImage) {
|
||||
/* 190 */ this.registerImage = registerImage;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getPersonName() {
|
||||
/* 194 */ return this.personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setPersonName(String personName) {
|
||||
/* 198 */ this.personName = personName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public long getRecognitionTime() {
|
||||
/* 202 */ return this.recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionTime(long recognitionTime) {
|
||||
/* 206 */ this.recognitionTime = recognitionTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDistrictId() {
|
||||
/* 210 */ return this.districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDistrictId(String districtId) {
|
||||
/* 214 */ this.districtId = districtId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getAreaId() {
|
||||
/* 218 */ return this.areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setAreaId(String areaId) {
|
||||
/* 222 */ this.areaId = areaId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceTypeName() {
|
||||
/* 226 */ return this.deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceTypeName(String deviceTypeName) {
|
||||
/* 230 */ this.deviceTypeName = deviceTypeName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getDeviceName() {
|
||||
/* 234 */ return this.deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setDeviceName(String deviceName) {
|
||||
/* 238 */ this.deviceName = deviceName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOpenDoorType() {
|
||||
/* 242 */ return this.openDoorType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOpenDoorType(String openDoorType) {
|
||||
/* 246 */ this.openDoorType = openDoorType;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getOperateName() {
|
||||
/* 250 */ return this.operateName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setOperateName(String operateName) {
|
||||
/* 254 */ this.operateName = operateName;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getScore() {
|
||||
/* 258 */ return this.score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setScore(BigDecimal score) {
|
||||
/* 262 */ this.score = score;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecordResult() {
|
||||
/* 266 */ return this.recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecordResult(Integer recordResult) {
|
||||
/* 270 */ this.recordResult = recordResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRecognitionNo() {
|
||||
/* 274 */ return this.recognitionNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionNo(String recognitionNo) {
|
||||
/* 278 */ this.recognitionNo = recognitionNo;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getRegRecordId() {
|
||||
/* 282 */ return this.regRecordId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRegRecordId(String regRecordId) {
|
||||
/* 286 */ this.regRecordId = regRecordId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getThreshold() {
|
||||
/* 290 */ return this.threshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setThreshold(BigDecimal threshold) {
|
||||
/* 294 */ this.threshold = threshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getRecognitionResult() {
|
||||
/* 298 */ return this.recognitionResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setRecognitionResult(Integer recognitionResult) {
|
||||
/* 302 */ this.recognitionResult = recognitionResult;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getGroupId() {
|
||||
/* 306 */ return this.groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setGroupId(String groupId) {
|
||||
/* 310 */ this.groupId = groupId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getFaceId() {
|
||||
/* 314 */ return this.faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setFaceId(String faceId) {
|
||||
/* 318 */ this.faceId = faceId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getQualityScore() {
|
||||
/* 322 */ return this.qualityScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setQualityScore(BigDecimal qualityScore) {
|
||||
/* 326 */ this.qualityScore = qualityScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public String getLogId() {
|
||||
/* 330 */ return this.logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setLogId(String logId) {
|
||||
/* 334 */ this.logId = logId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getTempScore() {
|
||||
/* 338 */ return this.tempScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTempScore(BigDecimal tempScore) {
|
||||
/* 342 */ this.tempScore = tempScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getMaskScore() {
|
||||
/* 346 */ return this.maskScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setMaskScore(BigDecimal maskScore) {
|
||||
/* 350 */ this.maskScore = maskScore;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public BigDecimal getTempThreshold() {
|
||||
/* 354 */ return this.tempThreshold;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTempThreshold(BigDecimal tempThreshold) {
|
||||
/* 358 */ this.tempThreshold = tempThreshold;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsRecordDetailQueryResultDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+60
@@ -0,0 +1,60 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class AcsRecordThreeSendQueryDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private static final long serialVersionUID = -4419274892857176883L;
|
||||
/* */ private String businessId;
|
||||
/* */ private Long startTime;
|
||||
/* */ private Long endTime;
|
||||
/* */
|
||||
/* */ public String getBusinessId() {
|
||||
/* 32 */ return this.businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setBusinessId(String businessId) {
|
||||
/* 36 */ this.businessId = businessId;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getStartTime() {
|
||||
/* 40 */ return this.startTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setStartTime(Long startTime) {
|
||||
/* 44 */ this.startTime = startTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Long getEndTime() {
|
||||
/* 48 */ return this.endTime;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setEndTime(Long endTime) {
|
||||
/* 52 */ this.endTime = endTime;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\AcsRecordThreeSendQueryDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class SendRecordTimeAddDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private Long time;
|
||||
/* */ private Integer type;
|
||||
/* */
|
||||
/* */ public Long getTime() {
|
||||
/* 26 */ return this.time;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTime(Long time) {
|
||||
/* 30 */ this.time = time;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getType() {
|
||||
/* 34 */ return this.type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setType(Integer type) {
|
||||
/* 38 */ this.type = type;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\SendRecordTimeAddDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class SendRecordTimeEditDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private Long time;
|
||||
/* */ private Integer type;
|
||||
/* */
|
||||
/* */ public Long getTime() {
|
||||
/* 26 */ return this.time;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTime(Long time) {
|
||||
/* 30 */ this.time = time;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getType() {
|
||||
/* 34 */ return this.type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setType(Integer type) {
|
||||
/* 38 */ this.type = type;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\SendRecordTimeEditDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.dto;
|
||||
/* */
|
||||
/* */ import java.io.Serializable;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public class SendRecordTimeResultDTO
|
||||
/* */ implements Serializable
|
||||
/* */ {
|
||||
/* */ private Long time;
|
||||
/* */ private Integer type;
|
||||
/* */
|
||||
/* */ public Long getTime() {
|
||||
/* 27 */ return this.time;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setTime(Long time) {
|
||||
/* 31 */ this.time = time;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public Integer getType() {
|
||||
/* 35 */ return this.type;
|
||||
/* */ }
|
||||
/* */
|
||||
/* */ public void setType(Integer type) {
|
||||
/* 39 */ this.type = type;
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\dto\SendRecordTimeResultDTO.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+136
@@ -0,0 +1,136 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.impl;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
/* */ import cn.cloudwalk.cloud.page.CloudwalkPageAble;
|
||||
/* */ import cn.cloudwalk.cloud.page.CloudwalkPageInfo;
|
||||
/* */ import cn.cloudwalk.elevator.record.dao.AcsElevatorRecordDao;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsElevatorAnalyseCycleBusinessResultDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsElevatorPageRequestInfoResultDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsElevatorQueryCountDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordAddDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryResultDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordQueryResultDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordEditDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordQueryDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsRecordThreeSendQueryDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.mapper.AcsElevatorRecordMapper;
|
||||
/* */ import com.github.pagehelper.Page;
|
||||
/* */ import com.github.pagehelper.page.PageMethod;
|
||||
/* */ import java.util.List;
|
||||
/* */ import javax.annotation.Resource;
|
||||
/* */ import org.slf4j.Logger;
|
||||
/* */ import org.slf4j.LoggerFactory;
|
||||
/* */ import org.springframework.stereotype.Repository;
|
||||
/* */
|
||||
/* */
|
||||
/* */ @Repository
|
||||
/* */ public class AcsElevatorRecordDaoImpl
|
||||
/* */ implements AcsElevatorRecordDao
|
||||
/* */ {
|
||||
/* */ @Resource
|
||||
/* */ private AcsElevatorRecordMapper acsElevatorRecordMapper;
|
||||
/* 33 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public CloudwalkPageAble<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO queryDTO, CloudwalkPageInfo pageInfo) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 39 */ PageMethod.startPage(pageInfo.getCurrentPage(), pageInfo.getPageSize());
|
||||
/* */
|
||||
/* 41 */ Page<AcsElevatorRecordDetailQueryResultDTO> result = (Page<AcsElevatorRecordDetailQueryResultDTO>)this.acsElevatorRecordMapper.page(queryDTO);
|
||||
/* 42 */ return new CloudwalkPageAble(result.getResult(), pageInfo, result.getTotal());
|
||||
/* 43 */ } catch (Exception e) {
|
||||
/* 44 */ this.logger.error("保存刷脸派梯记录失败,原因:", e);
|
||||
/* 45 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer add(AcsElevatorRecordAddDTO dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 52 */ return Integer.valueOf(this.acsElevatorRecordMapper.add(dto));
|
||||
/* 53 */ } catch (Exception e) {
|
||||
/* 54 */ this.logger.error("保存刷脸派梯记录失败,原因:", e);
|
||||
/* 55 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public int update(AcsOpenDoorRecordEditDTO dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 62 */ return this.acsElevatorRecordMapper.update(dto);
|
||||
/* 63 */ } catch (Exception e) {
|
||||
/* 64 */ this.logger.error("保存刷脸派梯记录失败,原因:", e);
|
||||
/* 65 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 72 */ return this.acsElevatorRecordMapper.query(dto);
|
||||
/* 73 */ } catch (Exception e) {
|
||||
/* 74 */ this.logger.error("保存刷脸派梯记录失败,原因:", e);
|
||||
/* 75 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO queryDTO) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 90 */ return this.acsElevatorRecordMapper.listByRecognitionTime(queryDTO);
|
||||
/* 91 */ } catch (Exception e) {
|
||||
/* 92 */ this.logger.error("根据识别时间查询派梯记录失败,原因:", e);
|
||||
/* 93 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public AcsElevatorPageRequestInfoResultDTO pageRequestInfo(String businessId) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 100 */ AcsElevatorPageRequestInfoResultDTO infoResultDTO = new AcsElevatorPageRequestInfoResultDTO();
|
||||
/* 101 */ infoResultDTO.setSrcFloorList(this.acsElevatorRecordMapper.srcFloor(businessId));
|
||||
/* 102 */ infoResultDTO.setDestFloorList(this.acsElevatorRecordMapper.destFloor(businessId));
|
||||
/* 103 */ infoResultDTO.setDispatchElevatorNoList(this.acsElevatorRecordMapper.dispatchElevatorNo(businessId));
|
||||
/* 104 */ return infoResultDTO;
|
||||
/* 105 */ } catch (Exception e) {
|
||||
/* 106 */ this.logger.error("开门记录分页请求数据查询失败,原因:", e);
|
||||
/* 107 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer analyseCount(AcsElevatorQueryCountDTO acsElevatorQueryCountDTO) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 114 */ return this.acsElevatorRecordMapper.analyseCount(acsElevatorQueryCountDTO);
|
||||
/* 115 */ } catch (Exception e) {
|
||||
/* 116 */ this.logger.error("开门记录统计分析查询失败,原因:", e);
|
||||
/* 117 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO acsElevatorQueryCountDTO) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 124 */ return this.acsElevatorRecordMapper.analyseGroup(acsElevatorQueryCountDTO);
|
||||
/* 125 */ } catch (Exception e) {
|
||||
/* 126 */ this.logger.error("开门记录统计分析分组查询失败,原因:", e);
|
||||
/* 127 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\impl\AcsElevatorRecordDaoImpl.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+70
@@ -0,0 +1,70 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.impl;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
/* */ import cn.cloudwalk.elevator.record.dao.AcsRecogRecordDao;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsRecogRecordAddDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsRecogRecordPageDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.AcsRecogRecordResultDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.mapper.AcsRecogRecordMapper;
|
||||
/* */ import java.util.List;
|
||||
/* */ import javax.annotation.Resource;
|
||||
/* */ import org.slf4j.Logger;
|
||||
/* */ import org.slf4j.LoggerFactory;
|
||||
/* */ import org.springframework.stereotype.Repository;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ @Repository
|
||||
/* */ public class AcsRecogRecordDaoImpl
|
||||
/* */ implements AcsRecogRecordDao
|
||||
/* */ {
|
||||
/* */ @Resource
|
||||
/* */ private AcsRecogRecordMapper acsRecogRecordMapper;
|
||||
/* 33 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer add(AcsRecogRecordAddDTO dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 38 */ return Integer.valueOf(this.acsRecogRecordMapper.add(dto));
|
||||
/* 39 */ } catch (Exception e) {
|
||||
/* 40 */ this.logger.error("保存识别记录失败,原因:", e);
|
||||
/* 41 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO dto) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 48 */ return this.acsRecogRecordMapper.page(dto);
|
||||
/* 49 */ } catch (Exception e) {
|
||||
/* 50 */ this.logger.error("分页查询识别记录失败,原因:", e);
|
||||
/* 51 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */ public AcsRecogRecordResultDTO getByPersonId(String personId) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 58 */ return this.acsRecogRecordMapper.getByPersonId(personId);
|
||||
/* 59 */ } catch (Exception e) {
|
||||
/* 60 */ this.logger.error("根据人员id查询识别记录失败,原因:", e);
|
||||
/* 61 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\impl\AcsRecogRecordDaoImpl.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+90
@@ -0,0 +1,90 @@
|
||||
/* */ package cn.cloudwalk.elevator.record.impl;
|
||||
/* */
|
||||
/* */ import cn.cloudwalk.cloud.exception.DataAccessException;
|
||||
/* */ import cn.cloudwalk.elevator.record.dao.SendRecordTimeDao;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.SendRecordTimeAddDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.SendRecordTimeEditDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.dto.SendRecordTimeResultDTO;
|
||||
/* */ import cn.cloudwalk.elevator.record.mapper.SendRecordTimeMapper;
|
||||
/* */ import javax.annotation.Resource;
|
||||
/* */ import org.slf4j.Logger;
|
||||
/* */ import org.slf4j.LoggerFactory;
|
||||
/* */ import org.springframework.stereotype.Repository;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ @Repository
|
||||
/* */ public class SendRecordTimeDaoImpl
|
||||
/* */ implements SendRecordTimeDao
|
||||
/* */ {
|
||||
/* */ @Resource
|
||||
/* */ private SendRecordTimeMapper sendRecordTimeMapper;
|
||||
/* 32 */ protected final Logger logger = LoggerFactory.getLogger(getClass());
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public SendRecordTimeResultDTO getByType(Integer type) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 44 */ return this.sendRecordTimeMapper.getByType(type);
|
||||
/* 45 */ } catch (Exception e) {
|
||||
/* 46 */ this.logger.error("根据类型获取时间戳失败,原因:", e);
|
||||
/* 47 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer add(SendRecordTimeAddDTO timeAddDTO) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 61 */ return this.sendRecordTimeMapper.add(timeAddDTO);
|
||||
/* 62 */ } catch (Exception e) {
|
||||
/* 63 */ this.logger.error("新增时间戳失败,原因:", e);
|
||||
/* 64 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ public Integer update(SendRecordTimeEditDTO editDTO) throws DataAccessException {
|
||||
/* */ try {
|
||||
/* 78 */ return this.sendRecordTimeMapper.update(editDTO);
|
||||
/* 79 */ } catch (Exception e) {
|
||||
/* 80 */ this.logger.error("根据类型修改时间戳失败,原因:", e);
|
||||
/* 81 */ throw new DataAccessException(e);
|
||||
/* */ }
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\impl\SendRecordTimeDaoImpl.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
package cn.cloudwalk.elevator.record.mapper;
|
||||
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorAnalyseCycleBusinessResultDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorQueryCountDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordAddDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryResultDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsElevatorRecordQueryResultDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordEditDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordQueryDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsRecordThreeSendQueryDTO;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface AcsElevatorRecordMapper {
|
||||
List<AcsElevatorRecordDetailQueryResultDTO> detail(AcsElevatorRecordDetailQueryDTO paramAcsElevatorRecordDetailQueryDTO);
|
||||
|
||||
List<AcsElevatorRecordDetailQueryResultDTO> page(AcsElevatorRecordDetailQueryDTO paramAcsElevatorRecordDetailQueryDTO);
|
||||
|
||||
int add(AcsElevatorRecordAddDTO paramAcsElevatorRecordAddDTO);
|
||||
|
||||
int update(AcsOpenDoorRecordEditDTO paramAcsOpenDoorRecordEditDTO);
|
||||
|
||||
List<AcsElevatorRecordQueryResultDTO> query(AcsOpenDoorRecordQueryDTO paramAcsOpenDoorRecordQueryDTO);
|
||||
|
||||
List<String> srcFloor(@Param("businessId") String paramString);
|
||||
|
||||
List<String> destFloor(@Param("businessId") String paramString);
|
||||
|
||||
List<String> dispatchElevatorNo(@Param("businessId") String paramString);
|
||||
|
||||
Integer analyseCount(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO);
|
||||
|
||||
List<AcsElevatorAnalyseCycleBusinessResultDTO> analyseGroup(AcsElevatorQueryCountDTO paramAcsElevatorQueryCountDTO);
|
||||
|
||||
List<AcsElevatorRecordQueryResultDTO> listByRecognitionTime(AcsRecordThreeSendQueryDTO paramAcsRecordThreeSendQueryDTO);
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\mapper\AcsElevatorRecordMapper.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+431
@@ -0,0 +1,431 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.cloudwalk.elevator.record.mapper.AcsElevatorRecordMapper">
|
||||
<resultMap id="resultMap"
|
||||
type="cn.cloudwalk.elevator.record.dto.AcsElevatorRecordQueryResultDTO">
|
||||
<result column="ID" property="id" jdbcType="VARCHAR"/>
|
||||
<result column="BUSINESS_ID" property="businessId" jdbcType="VARCHAR"/>
|
||||
<result column="DEVICE_ID" property="deviceId" jdbcType="VARCHAR"/>
|
||||
<result column="DEVICE_CODE" property="deviceCode" jdbcType="VARCHAR"/>
|
||||
<result column="DEVICE_NAME" property="deviceName" jdbcType="VARCHAR"/>
|
||||
<result column="DEVICE_TYPE_ID" property="deviceTypeId" jdbcType="VARCHAR"/>
|
||||
<result column="DEVICE_TYPE_NAME" property="deviceTypeName" jdbcType="VARCHAR"/>
|
||||
<result column="DISTRICT_ID" property="districtId" jdbcType="VARCHAR"/>
|
||||
<result column="AREA_ID" property="areaId" jdbcType="VARCHAR"/>
|
||||
<result column="OPEN_DOOR_TYPE" property="openDoorType" jdbcType="VARCHAR"/>
|
||||
<result column="OPERATE_NAME" property="operateName" jdbcType="VARCHAR"/>
|
||||
<result column="FACE_IMAGE_PATH" property="faceImagePath" jdbcType="VARCHAR"/>
|
||||
<result column="PANORAMA_IMAGE_PATH" property="panoramaImagePath" jdbcType="VARCHAR"/>
|
||||
<result column="RECORD_RESULT" property="recordResult" jdbcType="TINYINT"/>
|
||||
<result column="RECOGNITION_NO" property="recognitionNo" jdbcType="VARCHAR"/>
|
||||
<result column="RECOGNITION_TIME" property="recognitionTime" jdbcType="BIGINT"/>
|
||||
<result column="LOG_ID" property="logId" jdbcType="VARCHAR"/>
|
||||
<result column="RECOGNITION_FACE_ID" property="recognitionFaceId" jdbcType="VARCHAR"/>
|
||||
<result column="CREATE_TIME" property="createTime" jdbcType="BIGINT"/>
|
||||
<result column="CREATE_USER_ID" property="createUserId" jdbcType="VARCHAR"/>
|
||||
<result column="LAST_UPDATE_TIME" property="lastUpdateTime" jdbcType="BIGINT"/>
|
||||
<result column="LAST_UPDATE_USER_ID" property="lastUpdateUserId" jdbcType="VARCHAR"/>
|
||||
<result column="SRC_FLOOR" property="srcFloor" jdbcType="VARCHAR"/>
|
||||
<result column="DEST_FLOOR" property="destFloor" jdbcType="VARCHAR"/>
|
||||
<result column="DISPATCH_ELEVATOR_NO" property="dispatchElevatorNo" jdbcType="VARCHAR"/>
|
||||
<result column="DISPATCH_ELEVATOR_TIME" property="dispatchElevatorTime" jdbcType="VARCHAR"/>
|
||||
<result column="IS_VISITOR" property="isVisitor" jdbcType="TINYINT"/>
|
||||
<result column="INTERVIEWEE" property="interviewee" jdbcType="VARCHAR"/>
|
||||
<result column="PERSON_CODE" property="personCode" jdbcType="VARCHAR"/>
|
||||
<result column="ORG_ID" property="orgId" jdbcType="VARCHAR"/>
|
||||
<result column="ORG_NAME" property="orgName" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<select id="detail"
|
||||
parameterType="cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryDTO"
|
||||
resultType="cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryResultDTO">
|
||||
SELECT
|
||||
`er`.`ID` as openDoorId,
|
||||
`er`.`OPEN_DOOR_TYPE` as openDoorType,
|
||||
`er`.`DEVICE_NAME` as deviceName,
|
||||
`er`.`DISTRICT_ID` as districtId,
|
||||
`er`.`AREA_ID` as areaId,
|
||||
`er`.`DEVICE_TYPE_NAME` as deviceTypeName,
|
||||
`er`.`RECOGNITION_TIME` as recognitionTime,
|
||||
`er`.`PANORAMA_IMAGE_PATH` as panoramaImageOpen,
|
||||
`er`.`RECORD_RESULT` as recordResult,
|
||||
`er`.`RECOGNITION_NO` as recognitionNo,
|
||||
`er`.`OPERATE_NAME` as operateName,
|
||||
`rr`.`ID` as regRecordId,
|
||||
`er`.`OPERATE_NAME` as personName,
|
||||
`rr`.`REGISTER_IMAGE_PATH` as registerImage,
|
||||
`er`.`FACE_IMAGE_PATH` as faceImage,
|
||||
`er`.`PANORAMA_IMAGE_PATH` as panoramaImageRecog,
|
||||
`rr`.`SCORE` as score,
|
||||
`rr`.`THRESHOLD` as threshold,
|
||||
`rr`.`RECOGNITION_RESULT` as recognitionResult,
|
||||
`rr`.`GROUP_ID` as groupId,
|
||||
`rr`.`FACE_ID` as faceId,
|
||||
`rr`.`QUALITY_SCORE` as qualityScore,
|
||||
`rr`.`LOG_ID` as logId,
|
||||
`rr`.`TEMP_SCORE` as tempScore,
|
||||
`rr`.`MASK_SCORE` as maskScore,
|
||||
`rr`.`TEMP_THRESHOLD` as tempThreshold,
|
||||
`er`.`SRC_FLOOR` as srcFloor,
|
||||
`er`.`DEST_FLOOR` as destFloor,
|
||||
`er`.`DISPATCH_ELEVATOR_NO` as dispatchElevatorNo,
|
||||
`er`.`DISPATCH_ELEVATOR_TIME` as dispatchElevatorTime,
|
||||
`er`.`RECOGNITION_FACE_ID` as recognitionFaceId
|
||||
FROM
|
||||
`it_acs_elevator_record` `er`
|
||||
JOIN `it_acs_recog_record` `rr` ON `er`.`RECOGNITION_FACE_ID` = `rr`.`LOG_ID`
|
||||
AND `er`.`BUSINESS_ID` = `rr`.`BUSINESS_ID`
|
||||
AND (`er`.`DEVICE_ID` = `rr`.`DEVICE_ID` OR `er`.`DEVICE_ID` = `rr`.`SUB_DEVICE_ID`)
|
||||
AND rr.RECOGNITION_TIME between #{startTime,jdbcType=BIGINT} and #{endTime,jdbcType=BIGINT}
|
||||
<where>
|
||||
<if test="personName != null and personName != ''">
|
||||
and rr.PERSON_NAME like CONCAT('%', #{personName, jdbcType=VARCHAR}, '%')
|
||||
</if>
|
||||
<if test="businessId != null and businessId != ''">
|
||||
and er.BUSINESS_ID = #{businessId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="areaIds != null and areaIds.size > 0">
|
||||
and er.AREA_ID in
|
||||
<foreach collection="areaIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="districtIds != null and districtIds.size > 0">
|
||||
and er.DISTRICT_ID in
|
||||
<foreach collection="districtIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="deviceIds != null and deviceIds.size > 0">
|
||||
and er.DEVICE_ID in
|
||||
<foreach collection="deviceIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="openDoorTypeCode != null and openDoorTypeCode != ''">
|
||||
and er.OPEN_DOOR_TYPE = #{openDoorTypeCode,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="recordResult != null">
|
||||
and er.RECORD_RESULT = #{recordResult,jdbcType=INTEGER}
|
||||
</if>
|
||||
<if test="srcFloor != null and srcFloor != ''">
|
||||
and er.SRC_FLOOR = #{srcFloor,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="destFloor != null and destFloor != ''">
|
||||
and er.DEST_FLOOR = #{destFloor,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="dispatchElevatorNo != null and dispatchElevatorNo != ''">
|
||||
and er.DISPATCH_ELEVATOR_NO = #{dispatchElevatorNo,jdbcType=VARCHAR}
|
||||
</if>
|
||||
and er.RECOGNITION_TIME between #{startTime,jdbcType=BIGINT} and
|
||||
#{endTime,jdbcType=BIGINT}
|
||||
</where>
|
||||
order by er.RECOGNITION_TIME desc
|
||||
</select>
|
||||
|
||||
<select id="page"
|
||||
parameterType="cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryDTO"
|
||||
resultType="cn.cloudwalk.elevator.record.dto.AcsElevatorRecordDetailQueryResultDTO">
|
||||
SELECT
|
||||
`er`.`ID` as openDoorId,
|
||||
`er`.`OPEN_DOOR_TYPE` as openDoorType,
|
||||
`er`.`DEVICE_ID` as deviceId,
|
||||
`er`.`DEVICE_CODE` as deviceCode,
|
||||
`er`.`DEVICE_NAME` as deviceName,
|
||||
`er`.`DISTRICT_ID` as districtId,
|
||||
`er`.`AREA_ID` as areaId,
|
||||
`er`.`DEVICE_TYPE_NAME` as deviceTypeName,
|
||||
`er`.`RECOGNITION_TIME` as recognitionTime,
|
||||
`er`.`PANORAMA_IMAGE_PATH` as panoramaImageOpen,
|
||||
`er`.`RECORD_RESULT` as recordResult,
|
||||
`er`.`RECOGNITION_NO` as recognitionNo,
|
||||
`er`.`OPERATE_NAME` as operateName,
|
||||
`er`.`OPERATE_NAME` as personName,
|
||||
`er`.`FACE_IMAGE_PATH` as faceImage,
|
||||
`er`.`PANORAMA_IMAGE_PATH` as panoramaImageRecog,
|
||||
`er`.`SRC_FLOOR` as srcFloor,
|
||||
`er`.`DEST_FLOOR` as destFloor,
|
||||
`er`.`DISPATCH_ELEVATOR_NO` as dispatchElevatorNo,
|
||||
`er`.`DISPATCH_ELEVATOR_TIME` as dispatchElevatorTime,
|
||||
`er`.`RECOGNITION_FACE_ID` as recognitionFaceId,
|
||||
`er`.`RECOGNITION_FACE_ID` as personId,
|
||||
`er`.`IS_VISITOR` as isVisitor,
|
||||
`er`.`INTERVIEWEE` as interviewee,
|
||||
`er`.`PERSON_CODE` as personCode,
|
||||
`er`.`ORG_ID` as orgId,
|
||||
`er`.`ORG_NAME` as orgName
|
||||
FROM
|
||||
`it_acs_elevator_record` `er`
|
||||
<where>
|
||||
<if test="personName != null and personName != ''">
|
||||
and er.OPERATE_NAME like CONCAT('%', #{personName, jdbcType=VARCHAR}, '%')
|
||||
</if>
|
||||
<if test="personId != null and personId != ''">
|
||||
and er.RECOGNITION_FACE_ID = #{personId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="businessId != null and businessId != ''">
|
||||
and er.BUSINESS_ID = #{businessId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="areaIds != null and areaIds.size > 0">
|
||||
and er.AREA_ID in
|
||||
<foreach collection="areaIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="districtIds != null and districtIds.size > 0">
|
||||
and er.DISTRICT_ID in
|
||||
<foreach collection="districtIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="deviceIds != null and deviceIds.size > 0">
|
||||
and er.DEVICE_ID in
|
||||
<foreach collection="deviceIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="openDoorTypeCode != null and openDoorTypeCode != ''">
|
||||
and er.OPEN_DOOR_TYPE = #{openDoorTypeCode,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="recordResult != null">
|
||||
and er.RECORD_RESULT = #{recordResult,jdbcType=INTEGER}
|
||||
</if>
|
||||
<if test="srcFloor != null and srcFloor != ''">
|
||||
and er.SRC_FLOOR = #{srcFloor,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="destFloor != null and destFloor != ''">
|
||||
and er.DEST_FLOOR = #{destFloor,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="dispatchElevatorNo != null and dispatchElevatorNo != ''">
|
||||
and er.DISPATCH_ELEVATOR_NO = #{dispatchElevatorNo,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="personCode != null and personCode != ''">
|
||||
and er.PERSON_CODE = #{personCode,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="orgId != null and orgId != ''">
|
||||
and er.ORG_ID = #{orgId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="isVisitor != null ">
|
||||
and er.IS_VISITOR = #{isVisitor,jdbcType=INTEGER}
|
||||
</if>
|
||||
and er.RECOGNITION_TIME between #{startTime,jdbcType=BIGINT} and
|
||||
#{endTime,jdbcType=BIGINT}
|
||||
</where>
|
||||
order by er.RECOGNITION_TIME desc
|
||||
</select>
|
||||
|
||||
<select id="analyseCount" resultType="integer"
|
||||
parameterType="cn.cloudwalk.elevator.record.dto.AcsElevatorQueryCountDTO">
|
||||
SELECT
|
||||
count(1)
|
||||
FROM
|
||||
`it_acs_elevator_record` `er`
|
||||
JOIN `it_acs_recog_record` `rr` ON `er`.`RECOGNITION_FACE_ID` = `rr`.`LOG_ID`
|
||||
AND `er`.`BUSINESS_ID` = `rr`.`BUSINESS_ID`
|
||||
AND (`er`.`DEVICE_ID` = `rr`.`DEVICE_ID` OR `er`.`DEVICE_ID` = `rr`.`SUB_DEVICE_ID`)
|
||||
AND rr.RECOGNITION_TIME between #{startTime,jdbcType=BIGINT} and
|
||||
#{endTime,jdbcType=BIGINT}
|
||||
<where>
|
||||
<if test="businessId != null and businessId != ''">
|
||||
and er.BUSINESS_ID = #{businessId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="recordResult != null">
|
||||
and er.RECORD_RESULT = #{recordResult,jdbcType=INTEGER}
|
||||
</if>
|
||||
<if test="srcFloor != null and srcFloor != ''">
|
||||
and er.SRC_FLOOR = #{srcFloor,jdbcType=VARCHAR}
|
||||
</if>
|
||||
and er.RECOGNITION_TIME between #{startTime,jdbcType=BIGINT} and
|
||||
#{endTime,jdbcType=BIGINT}
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="analyseGroup" resultType="cn.cloudwalk.elevator.record.dto.AcsElevatorAnalyseCycleBusinessResultDTO"
|
||||
parameterType="cn.cloudwalk.elevator.record.dto.AcsElevatorQueryCountDTO">
|
||||
SELECT
|
||||
count(1) as count,
|
||||
er.BUSINESS_ID as businessId
|
||||
FROM
|
||||
`it_acs_elevator_record` `er`
|
||||
JOIN `it_acs_recog_record` `rr` ON `er`.`RECOGNITION_FACE_ID` = `rr`.`LOG_ID`
|
||||
AND `er`.`BUSINESS_ID` = `rr`.`BUSINESS_ID`
|
||||
AND (`er`.`DEVICE_ID` = `rr`.`DEVICE_ID` OR `er`.`DEVICE_ID` = `rr`.`SUB_DEVICE_ID`)
|
||||
AND rr.RECOGNITION_TIME between #{startTime,jdbcType=BIGINT} and
|
||||
#{endTime,jdbcType=BIGINT}
|
||||
<where>
|
||||
<if test="businessId != null and businessId != ''">
|
||||
and er.BUSINESS_ID = #{businessId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="recordResult != null">
|
||||
and er.RECORD_RESULT = #{recordResult,jdbcType=INTEGER}
|
||||
</if>
|
||||
<if test="srcFloor != null and srcFloor != ''">
|
||||
and er.SRC_FLOOR = #{srcFloor,jdbcType=VARCHAR}
|
||||
</if>
|
||||
and er.RECOGNITION_TIME between #{startTime,jdbcType=BIGINT} and
|
||||
#{endTime,jdbcType=BIGINT}
|
||||
</where>
|
||||
GROUP BY er.BUSINESS_ID
|
||||
</select>
|
||||
|
||||
<insert id="add"
|
||||
parameterType="cn.cloudwalk.elevator.record.dto.AcsElevatorRecordAddDTO">
|
||||
insert into it_acs_elevator_record (ID, BUSINESS_ID, DEVICE_ID, DEVICE_CODE,
|
||||
DEVICE_NAME, DEVICE_TYPE_ID, DEVICE_TYPE_NAME, DISTRICT_ID, AREA_ID,
|
||||
OPEN_DOOR_TYPE, OPERATE_NAME, FACE_IMAGE_PATH, PANORAMA_IMAGE_PATH,
|
||||
RECORD_RESULT, RECOGNITION_NO, RECOGNITION_TIME,
|
||||
LOG_ID, RECOGNITION_FACE_ID, CREATE_TIME,
|
||||
CREATE_USER_ID, LAST_UPDATE_TIME, LAST_UPDATE_USER_ID, SRC_FLOOR
|
||||
,DEST_FLOOR,DISPATCH_ELEVATOR_NO,DISPATCH_ELEVATOR_TIME,IS_VISITOR,INTERVIEWEE,PERSON_CODE,ORG_ID,ORG_NAME)
|
||||
values (#{id,jdbcType=VARCHAR}, #{businessId,jdbcType=VARCHAR},
|
||||
#{deviceId,jdbcType=VARCHAR},
|
||||
#{deviceCode,jdbcType=VARCHAR}, #{deviceName,jdbcType=VARCHAR},
|
||||
#{deviceTypeId,jdbcType=VARCHAR},
|
||||
#{deviceTypeName,jdbcType=VARCHAR}, #{districtId,jdbcType=VARCHAR},
|
||||
#{areaId,jdbcType=VARCHAR},
|
||||
#{openDoorType,jdbcType=VARCHAR}, #{operateName,jdbcType=VARCHAR},
|
||||
#{faceImagePath,jdbcType=VARCHAR},
|
||||
#{panoramaImagePath,jdbcType=VARCHAR}, #{recordResult,jdbcType=TINYINT},
|
||||
#{recognitionNo,jdbcType=VARCHAR}, #{recognitionTime,jdbcType=BIGINT},
|
||||
#{logId,jdbcType=VARCHAR},
|
||||
#{recognitionFaceId,jdbcType=VARCHAR}, #{createTime,jdbcType=BIGINT},
|
||||
#{createUserId,jdbcType=VARCHAR}, #{lastUpdateTime,jdbcType=BIGINT},
|
||||
#{lastUpdateUserId,jdbcType=VARCHAR},#{srcFloor,jdbcType=VARCHAR},
|
||||
#{destFloor,jdbcType=VARCHAR},#{dispatchElevatorNo,jdbcType=VARCHAR},#{dispatchElevatorTime,jdbcType=BIGINT},
|
||||
#{isVisitor,jdbcType=TINYINT},#{interviewee,jdbcType=VARCHAR},
|
||||
#{personCode,jdbcType=VARCHAR},#{orgId,jdbcType=VARCHAR},#{orgName,jdbcType=VARCHAR})
|
||||
</insert>
|
||||
|
||||
<update id="update"
|
||||
parameterType="cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordEditDTO">
|
||||
update it_acs_elevator_record
|
||||
<trim prefix="set" suffixOverrides=",">
|
||||
<if test="lastUpdateTime != null">
|
||||
LAST_UPDATE_TIME = #{lastUpdateTime, jdbcType=BIGINT},
|
||||
</if>
|
||||
|
||||
<if test="recordResult != null">
|
||||
RECORD_RESULT = #{recordResult, jdbcType=TINYINT},
|
||||
</if>
|
||||
<if test="openDoorType != null and openDoorType != ''">
|
||||
OPEN_DOOR_TYPE = #{openDoorType, jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="operateName != null and operateName != ''">
|
||||
OPERATE_NAME = #{operateName, jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="faceImagePath != null and faceImagePath != ''">
|
||||
FACE_IMAGE_PATH = #{faceImagePath, jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="panoramaImagePath != null and panoramaImagePath != ''">
|
||||
PANORAMA_IMAGE_PATH = #{panoramaImagePath, jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="recognitionNo != null and recognitionNo != ''">
|
||||
RECOGNITION_NO = #{recognitionNo, jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="lastUpdateUserId != null and lastUpdateUserId != ''">
|
||||
LAST_UPDATE_USER_ID = #{lastUpdateUserId, jdbcType=VARCHAR},
|
||||
</if>
|
||||
</trim>
|
||||
<where>
|
||||
<if test="id != null and id != ''">
|
||||
and ID = #{id, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="businessId != null and businessId != ''">
|
||||
and BUSINESS_ID = #{businessId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="logId != null and logId != ''">
|
||||
and LOG_ID = #{logId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="deviceId != null and deviceId != ''">
|
||||
and DEVICE_ID = #{deviceId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="deviceCode != null and deviceCode != ''">
|
||||
and DEVICE_CODE = #{deviceCode, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="startDay != null">
|
||||
and RECOGNITION_TIME >= #{startDay, jdbcType=BIGINT}
|
||||
</if>
|
||||
<if test="endDay != null">
|
||||
and RECOGNITION_TIME <= #{endDay, jdbcType=BIGINT}
|
||||
</if>
|
||||
</where>
|
||||
</update>
|
||||
|
||||
<select id="query"
|
||||
parameterType="cn.cloudwalk.elevator.record.dto.AcsOpenDoorRecordQueryDTO"
|
||||
resultMap="resultMap">
|
||||
select ID,BUSINESS_ID,DEVICE_ID,DEVICE_CODE,DEVICE_NAME,
|
||||
DEVICE_TYPE_ID,DEVICE_TYPE_NAME,DISTRICT_ID,AREA_ID,OPEN_DOOR_TYPE,
|
||||
OPERATE_NAME,FACE_IMAGE_PATH,PANORAMA_IMAGE_PATH,RECORD_RESULT,RECOGNITION_NO,
|
||||
RECOGNITION_TIME,LOG_ID,RECOGNITION_FACE_ID,CREATE_TIME,CREATE_USER_ID,
|
||||
LAST_UPDATE_TIME,LAST_UPDATE_USER_ID,SRC_FLOOR
|
||||
,DEST_FLOOR,DISPATCH_ELEVATOR_NO,DISPATCH_ELEVATOR_TIME
|
||||
from it_acs_elevator_record
|
||||
<trim prefix="where" prefixOverrides="and|or">
|
||||
<if test="id != null and id != ''">
|
||||
and ID = #{id, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="businessId != null and businessId != ''">
|
||||
and BUSINESS_ID = #{businessId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="startDay != null">
|
||||
and RECOGNITION_TIME >= #{startDay, jdbcType=BIGINT}
|
||||
</if>
|
||||
<if test="endDay != null">
|
||||
and RECOGNITION_TIME <= #{endDay, jdbcType=BIGINT}
|
||||
</if>
|
||||
<if test="logId != null and logId != ''">
|
||||
and LOG_ID = #{logId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
</trim>
|
||||
order by CREATE_TIME desc
|
||||
</select>
|
||||
|
||||
<select id="listByRecognitionTime"
|
||||
parameterType="cn.cloudwalk.elevator.record.dto.AcsRecordThreeSendQueryDTO"
|
||||
resultMap="resultMap">
|
||||
select ID,BUSINESS_ID,DEVICE_ID,DEVICE_CODE,DEVICE_NAME,
|
||||
DEVICE_TYPE_ID,DEVICE_TYPE_NAME,DISTRICT_ID,AREA_ID,OPEN_DOOR_TYPE,
|
||||
OPERATE_NAME,FACE_IMAGE_PATH,PANORAMA_IMAGE_PATH,RECORD_RESULT,RECOGNITION_NO,
|
||||
RECOGNITION_TIME,LOG_ID,RECOGNITION_FACE_ID,CREATE_TIME,CREATE_USER_ID,
|
||||
LAST_UPDATE_TIME,LAST_UPDATE_USER_ID,SRC_FLOOR
|
||||
,DEST_FLOOR,DISPATCH_ELEVATOR_NO,DISPATCH_ELEVATOR_TIME,IS_VISITOR,INTERVIEWEE,PERSON_CODE,ORG_ID,ORG_NAME
|
||||
from it_acs_elevator_record
|
||||
WHERE RECOGNITION_TIME between #{startTime,jdbcType=BIGINT} and #{endTime,jdbcType=BIGINT}
|
||||
and RECORD_RESULT = 0
|
||||
and PERSON_CODE is not null
|
||||
order by RECOGNITION_TIME asc
|
||||
limit 1000
|
||||
</select>
|
||||
|
||||
<select id="srcFloor" resultType="java.lang.String">
|
||||
select SRC_FLOOR
|
||||
from it_acs_elevator_record
|
||||
<if test="businessId != null and businessId != ''">
|
||||
where BUSINESS_ID = #{businessId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
group by SRC_FLOOR
|
||||
order by SRC_FLOOR
|
||||
</select>
|
||||
|
||||
<select id="destFloor" resultType="java.lang.String">
|
||||
select DEST_FLOOR
|
||||
from it_acs_elevator_record
|
||||
<if test="businessId != null and businessId != ''">
|
||||
where BUSINESS_ID = #{businessId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
group by DEST_FLOOR
|
||||
order by DEST_FLOOR
|
||||
</select>
|
||||
|
||||
<select id="dispatchElevatorNo" resultType="java.lang.String" parameterType="java.lang.String">
|
||||
select DISPATCH_ELEVATOR_NO
|
||||
from it_acs_elevator_record
|
||||
<if test="businessId != null and businessId != ''">
|
||||
where BUSINESS_ID = #{businessId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
group by DISPATCH_ELEVATOR_NO
|
||||
order by DISPATCH_ELEVATOR_NO
|
||||
</select>
|
||||
</mapper>
|
||||
+129
@@ -0,0 +1,129 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
|
||||
<mapper namespace="cn.cloudwalk.elevator.passrule.mapper.AcsPassRuleMapper">
|
||||
|
||||
<resultMap id="resultMap" type="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleResultDto">
|
||||
<result column="ID" property="id" jdbcType="VARCHAR"/>
|
||||
<result column="BUSINESS_ID" property="businessId" jdbcType="VARCHAR"/>
|
||||
<result column="NAME" property="name" jdbcType="VARCHAR"/>
|
||||
<result column="VALID_DATE_CRON" property="validDateCron" jdbcType="LONGVARCHAR"/>
|
||||
<result column="VALID_DATE_JSON" property="validDateJson" jdbcType="LONGVARCHAR"/>
|
||||
<result column="BEGIN_DATE" property="beginDate" jdbcType="BIGINT"/>
|
||||
<result column="END_DATE" property="endDate" jdbcType="BIGINT"/>
|
||||
<result column="IMAGE_STORE_ID" property="imageStoreId" jdbcType="VARCHAR"/>
|
||||
<result column="ZONE_ID" property="zoneId" jdbcType="VARCHAR"/>
|
||||
<result column="ZONE_NAME" property="zoneName" jdbcType="VARCHAR"/>
|
||||
<result column="IS_DEFAULT" property="isDefault" jdbcType="INTEGER"/>
|
||||
|
||||
<result column="CREATE_TIME" property="createTime" jdbcType="BIGINT"/>
|
||||
<result column="CREATE_USER_ID" property="createUserId" jdbcType="VARCHAR"/>
|
||||
<result column="LAST_UPDATE_TIME" property="lastUpdateTime" jdbcType="BIGINT"/>
|
||||
<result column="LAST_UPDATE_USER_ID" property="lastUpdateUserId" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<insert id="insert" parameterType="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleAddDto">
|
||||
insert into it_acs_pass_rule (ID, BUSINESS_ID, NAME, VALID_DATE_CRON, VALID_DATE_JSON,
|
||||
BEGIN_DATE, END_DATE, IMAGE_STORE_ID, ZONE_ID,ZONE_NAME,
|
||||
CREATE_TIME, CREATE_USER_ID, LAST_UPDATE_TIME, LAST_UPDATE_USER_ID,IS_DEFAULT)
|
||||
values (#{id,jdbcType=VARCHAR}, #{businessId,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
|
||||
#{validDateCron,jdbcType=LONGVARCHAR}, #{validDateJson,jdbcType=LONGVARCHAR},
|
||||
#{beginDate,jdbcType=BIGINT}, #{endDate,jdbcType=BIGINT},
|
||||
#{imageStoreId,jdbcType=VARCHAR},
|
||||
#{zoneId,jdbcType=VARCHAR},
|
||||
#{zoneName,jdbcType=VARCHAR},
|
||||
#{createTime,jdbcType=BIGINT}, #{createUserId,jdbcType=VARCHAR},
|
||||
#{lastUpdateTime,jdbcType=BIGINT}, #{lastUpdateUserId,jdbcType=VARCHAR},
|
||||
#{isDefault,jdbcType=INTEGER})
|
||||
</insert>
|
||||
|
||||
<delete id="delete"
|
||||
parameterType="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto">
|
||||
delete from it_acs_pass_rule
|
||||
where BUSINESS_ID = #{businessId,jdbcType=VARCHAR}
|
||||
<if test="ids != null and ids.size > 0">
|
||||
and ID in
|
||||
<foreach collection="ids" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
</delete>
|
||||
|
||||
<update id="update" parameterType="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleEditDto">
|
||||
update it_acs_pass_rule
|
||||
<set>
|
||||
<if test="name != null and name !=''">
|
||||
NAME = #{name,jdbcType=VARCHAR},
|
||||
</if>
|
||||
VALID_DATE_CRON = #{validDateCron,jdbcType=LONGVARCHAR},
|
||||
VALID_DATE_JSON = #{validDateJson,jdbcType=LONGVARCHAR},
|
||||
BEGIN_DATE = #{beginDate,jdbcType=BIGINT},
|
||||
END_DATE = #{endDate,jdbcType=BIGINT},
|
||||
</set>
|
||||
<where>
|
||||
<if test="id != null and id != ''">
|
||||
and ID = #{id,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="businessId != null and businessId !=''">
|
||||
and BUSINESS_ID = #{businessId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
</where>
|
||||
</update>
|
||||
|
||||
<select id="list" parameterType="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto"
|
||||
resultMap="resultMap">
|
||||
select ID, BUSINESS_ID, NAME, VALID_DATE_CRON, VALID_DATE_JSON,
|
||||
BEGIN_DATE, END_DATE, IMAGE_STORE_ID, ZONE_ID,ZONE_NAME,
|
||||
CREATE_TIME, CREATE_USER_ID, LAST_UPDATE_TIME, LAST_UPDATE_USER_ID,IS_DEFAULT
|
||||
from it_acs_pass_rule
|
||||
<where>
|
||||
<if test="id != null and id != ''">
|
||||
and id = #{id, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="businessId != null and businessId != ''">
|
||||
and BUSINESS_ID = #{businessId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="imageStoreId != null and imageStoreId !=''">
|
||||
and IMAGE_STORE_ID = #{imageStoreId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="zoneId != null and zoneId !=''">
|
||||
and ZONE_ID = #{zoneId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="imageStoreIds != null and imageStoreIds.size > 0">
|
||||
and IMAGE_STORE_ID in
|
||||
<foreach collection="imageStoreIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="ids != null and ids.size > 0">
|
||||
and ID in
|
||||
<foreach collection="ids" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
</where>
|
||||
order by CREATE_TIME desc
|
||||
</select>
|
||||
|
||||
<select id="getIsDefaultByZoneId" resultType="java.lang.String">
|
||||
SELECT IMAGE_STORE_ID
|
||||
FROM it_acs_pass_rule
|
||||
WHERE IS_DEFAULT = 1
|
||||
AND ZONE_ID = #{zoneId,jdbcType=VARCHAR}
|
||||
AND BUSINESS_ID = #{businessId, jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
<select id="listByImageId"
|
||||
resultType="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto">
|
||||
SELECT ZONE_ID AS zoneId,ZONE_NAME AS zoneName,IMAGE_STORE_ID AS imageStoreId
|
||||
FROM it_acs_pass_rule
|
||||
WHERE BUSINESS_ID = #{businessId, jdbcType=VARCHAR}
|
||||
<if test="imageStoreIds != null and imageStoreIds.size > 0">
|
||||
AND IMAGE_STORE_ID in
|
||||
<foreach collection="imageStoreIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
package cn.cloudwalk.elevator.record.mapper;
|
||||
|
||||
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordAddDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordPageDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.AcsRecogRecordResultDTO;
|
||||
import java.util.List;
|
||||
|
||||
public interface AcsRecogRecordMapper {
|
||||
int add(AcsRecogRecordAddDTO paramAcsRecogRecordAddDTO);
|
||||
|
||||
List<AcsRecogRecordResultDTO> page(AcsRecogRecordPageDTO paramAcsRecogRecordPageDTO);
|
||||
|
||||
AcsRecogRecordResultDTO getByPersonId(String paramString);
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\mapper\AcsRecogRecordMapper.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+151
@@ -0,0 +1,151 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.cloudwalk.elevator.record.mapper.AcsRecogRecordMapper">
|
||||
<resultMap id="resultMap" type="cn.cloudwalk.elevator.record.dto.AcsRecogRecordResultDTO">
|
||||
<id column="ID" jdbcType="VARCHAR" property="id"/>
|
||||
<result column="BUSINESS_ID" jdbcType="VARCHAR" property="businessId"/>
|
||||
<result column="PERSON_ID" jdbcType="VARCHAR" property="personId"/>
|
||||
<result column="PERSON_NAME" jdbcType="VARCHAR" property="personName"/>
|
||||
<result column="DEVICE_CODE" jdbcType="VARCHAR" property="deviceCode"/>
|
||||
<result column="DEVICE_NAME" jdbcType="VARCHAR" property="deviceName"/>
|
||||
<result column="THRESHOLD" jdbcType="DECIMAL" property="threshold"/>
|
||||
<result column="DISTRICT_ID" jdbcType="VARCHAR" property="districtId"/>
|
||||
<result column="AREA_ID" jdbcType="VARCHAR" property="areaId"/>
|
||||
<result column="DEVICE_TYPE_ID" jdbcType="VARCHAR" property="deviceTypeId"/>
|
||||
<result column="DEVICE_TYPE_NAME" jdbcType="VARCHAR" property="deviceTypeName"/>
|
||||
|
||||
<result column="SUB_DEVICE_ID" jdbcType="VARCHAR" property="subDeviceId"/>
|
||||
<result column="SUB_DEVICE_CODE" jdbcType="VARCHAR" property="subDeviceCode"/>
|
||||
<result column="SUB_DEVICE_NAME" jdbcType="VARCHAR" property="subDeviceName"/>
|
||||
<result column="SUB_DEVICE_TYPE_ID" jdbcType="VARCHAR" property="subDeviceTypeId"/>
|
||||
<result column="SUB_DEVICE_TYPE_NAME" jdbcType="VARCHAR" property="subDeviceTypeName"/>
|
||||
|
||||
<result column="REGISTER_IMAGE_PATH" jdbcType="VARCHAR" property="registerImagePath"/>
|
||||
<result column="FACE_IMAGE_PATH" jdbcType="VARCHAR" property="faceImagePath"/>
|
||||
<result column="PANORAMA_IMAGE_PATH" jdbcType="VARCHAR" property="panoramaImagePath"/>
|
||||
<result column="SCORE" jdbcType="DECIMAL" property="score"/>
|
||||
<result column="RECOGNITION_RESULT" jdbcType="TINYINT" property="recognitionResult"/>
|
||||
<result column="RECOGNITION_TIME" jdbcType="BIGINT" property="recognitionTime"/>
|
||||
<result column="GROUP_ID" jdbcType="VARCHAR" property="groupId"/>
|
||||
<result column="FACE_ID" jdbcType="VARCHAR" property="faceId"/>
|
||||
<result column="QUALITY_SCORE" jdbcType="DECIMAL" property="qualityScore"/>
|
||||
<result column="LOG_ID" jdbcType="VARCHAR" property="logId"/>
|
||||
<result column="TEMP_SCORE" jdbcType="DECIMAL" property="tempScore"/>
|
||||
<result column="MASK_SCORE" jdbcType="DECIMAL" property="maskScore"/>
|
||||
<result column="TEMP_THRESHOLD" jdbcType="DECIMAL" property="tempThreshold"/>
|
||||
<result column="REMARK" jdbcType="VARCHAR" property="remark"/>
|
||||
<result column="DEVICE_ID" jdbcType="VARCHAR" property="deviceId"/>
|
||||
<result column="CREATE_TIME" jdbcType="BIGINT" property="createTime"/>
|
||||
<result column="CREATE_USER_ID" jdbcType="VARCHAR" property="createUserId"/>
|
||||
<result column="LAST_UPDATE_TIME" jdbcType="BIGINT" property="lastUpdateTime"/>
|
||||
<result column="LAST_UPDATE_USER_ID" jdbcType="VARCHAR" property="lastUpdateUserId"/>
|
||||
<result column="PERSON_LABEL_IDS" jdbcType="VARCHAR" property="personLabelIds"/>
|
||||
</resultMap>
|
||||
|
||||
<insert id="add" parameterType="cn.cloudwalk.elevator.record.dto.AcsRecogRecordAddDTO">
|
||||
insert into it_acs_recog_record (ID, PERSON_ID, PERSON_NAME,
|
||||
BUSINESS_ID, DEVICE_ID, DEVICE_CODE,
|
||||
DEVICE_NAME, THRESHOLD, DISTRICT_ID,
|
||||
AREA_ID, DEVICE_TYPE_ID, DEVICE_TYPE_NAME,
|
||||
SUB_DEVICE_ID, SUB_DEVICE_CODE, SUB_DEVICE_NAME, SUB_DEVICE_TYPE_ID, SUB_DEVICE_TYPE_NAME,
|
||||
REGISTER_IMAGE_PATH, FACE_IMAGE_PATH, PANORAMA_IMAGE_PATH,
|
||||
SCORE, RECOGNITION_RESULT, RECOGNITION_TIME,
|
||||
GROUP_ID, FACE_ID, QUALITY_SCORE,
|
||||
LOG_ID, TEMP_SCORE, MASK_SCORE,
|
||||
TEMP_THRESHOLD, CARD_TYPE, `SOURCE`,
|
||||
TEMP_IMAGE_PATH, REMARK, CREATE_TIME,
|
||||
CREATE_USER_ID, LAST_UPDATE_TIME, LAST_UPDATE_USER_ID, PERSON_LABEL_IDS
|
||||
)
|
||||
values (#{id,jdbcType=VARCHAR}, #{personId,jdbcType=VARCHAR}, #{personName,jdbcType=VARCHAR},
|
||||
#{businessId,jdbcType=VARCHAR}, #{deviceId,jdbcType=VARCHAR}, #{deviceCode,jdbcType=VARCHAR},
|
||||
#{deviceName,jdbcType=VARCHAR}, #{threshold,jdbcType=DECIMAL}, #{districtId,jdbcType=VARCHAR},
|
||||
#{areaId,jdbcType=VARCHAR}, #{deviceTypeId,jdbcType=VARCHAR}, #{deviceTypeName,jdbcType=VARCHAR},
|
||||
#{subDeviceId,jdbcType=VARCHAR}, #{subDeviceCode,jdbcType=VARCHAR}, #{subDeviceName,jdbcType=VARCHAR},
|
||||
#{subDeviceTypeId,jdbcType=VARCHAR}, #{subDeviceTypeName,jdbcType=VARCHAR},
|
||||
#{registerImagePath,jdbcType=VARCHAR}, #{faceImagePath,jdbcType=VARCHAR}, #{panoramaImagePath,jdbcType=VARCHAR},
|
||||
#{score,jdbcType=DECIMAL}, #{recognitionResult,jdbcType=TINYINT}, #{recognitionTime,jdbcType=BIGINT},
|
||||
#{groupId,jdbcType=VARCHAR}, #{faceId,jdbcType=VARCHAR}, #{qualityScore,jdbcType=DECIMAL},
|
||||
#{logId,jdbcType=VARCHAR}, #{tempScore,jdbcType=DECIMAL}, #{maskScore,jdbcType=DECIMAL},
|
||||
#{tempThreshold,jdbcType=DECIMAL}, #{cardType,jdbcType=VARCHAR}, #{source,jdbcType=TINYINT},
|
||||
#{tempImagePath,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{createTime,jdbcType=BIGINT},
|
||||
#{createUserId,jdbcType=VARCHAR}, #{lastUpdateTime,jdbcType=BIGINT},
|
||||
#{lastUpdateUserId,jdbcType=VARCHAR},#{personLabelIds,jdbcType=VARCHAR}
|
||||
)
|
||||
</insert>
|
||||
|
||||
<select id="page"
|
||||
parameterType="cn.cloudwalk.elevator.record.dto.AcsRecogRecordPageDTO"
|
||||
resultMap="resultMap">
|
||||
select ID,PERSON_ID, PERSON_NAME, BUSINESS_ID,
|
||||
DEVICE_ID, DEVICE_CODE, DEVICE_NAME,
|
||||
THRESHOLD, DISTRICT_ID, AREA_ID,
|
||||
DEVICE_TYPE_ID, DEVICE_TYPE_NAME,
|
||||
SUB_DEVICE_ID, SUB_DEVICE_CODE, SUB_DEVICE_NAME, SUB_DEVICE_TYPE_ID, SUB_DEVICE_TYPE_NAME,
|
||||
REGISTER_IMAGE_PATH,
|
||||
FACE_IMAGE_PATH, PANORAMA_IMAGE_PATH, SCORE,
|
||||
RECOGNITION_RESULT, RECOGNITION_TIME, GROUP_ID,
|
||||
FACE_ID, QUALITY_SCORE, LOG_ID,
|
||||
TEMP_SCORE, MASK_SCORE, TEMP_THRESHOLD,
|
||||
REMARK, CREATE_TIME, CREATE_USER_ID,
|
||||
LAST_UPDATE_TIME, LAST_UPDATE_USER_ID, PERSON_LABEL_IDS
|
||||
from
|
||||
it_acs_recog_record
|
||||
<where>
|
||||
<if test="businessId != null and businessId != ''">
|
||||
and BUSINESS_ID = #{businessId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="logId != null and logId != ''">
|
||||
and LOG_ID = #{logId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="recognitionResult != null">
|
||||
and RECOGNITION_RESULT = #{recognitionResult, jdbcType=TINYINT}
|
||||
</if>
|
||||
<if test="personName != null and personName != ''">
|
||||
and PERSON_NAME like CONCAT('%', #{personName, jdbcType=VARCHAR}, '%')
|
||||
</if>
|
||||
<if test="areaIds != null and areaIds.size > 0">
|
||||
and AREA_ID in
|
||||
<foreach collection="areaIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="districtIds != null and districtIds.size > 0">
|
||||
and DISTRICT_ID in
|
||||
<foreach collection="districtIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="deviceIds != null and deviceIds.size > 0">
|
||||
and DEVICE_ID in
|
||||
<foreach collection="deviceIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="compareType != null">
|
||||
and `SOURCE` = #{compareType,jdbcType=TINYINT}
|
||||
</if>
|
||||
and RECOGNITION_TIME between #{startTime,jdbcType=BIGINT} and #{endTime,jdbcType=BIGINT}
|
||||
</where>
|
||||
order by RECOGNITION_TIME desc
|
||||
</select>
|
||||
|
||||
<select id="getByPersonId" resultMap="resultMap">
|
||||
select ID,PERSON_ID, PERSON_NAME, BUSINESS_ID,
|
||||
DEVICE_ID, DEVICE_CODE, DEVICE_NAME,
|
||||
THRESHOLD, DISTRICT_ID, AREA_ID,
|
||||
DEVICE_TYPE_ID, DEVICE_TYPE_NAME,
|
||||
SUB_DEVICE_ID, SUB_DEVICE_CODE, SUB_DEVICE_NAME, SUB_DEVICE_TYPE_ID, SUB_DEVICE_TYPE_NAME,
|
||||
REGISTER_IMAGE_PATH,
|
||||
FACE_IMAGE_PATH, PANORAMA_IMAGE_PATH, SCORE,
|
||||
RECOGNITION_RESULT, RECOGNITION_TIME, GROUP_ID,
|
||||
FACE_ID, QUALITY_SCORE, LOG_ID,
|
||||
TEMP_SCORE, MASK_SCORE, TEMP_THRESHOLD,
|
||||
REMARK, CREATE_TIME, CREATE_USER_ID,
|
||||
LAST_UPDATE_TIME, LAST_UPDATE_USER_ID, PERSON_LABEL_IDS
|
||||
from
|
||||
it_acs_recog_record
|
||||
where PERSON_ID = #{personId,jdbcType=VARCHAR}
|
||||
order by RECOGNITION_TIME desc
|
||||
limit 1
|
||||
</select>
|
||||
</mapper>
|
||||
+350
@@ -0,0 +1,350 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
|
||||
<mapper namespace="cn.cloudwalk.elevator.passrule.mapper.ImageRuleRefMapper">
|
||||
|
||||
<resultMap id="resultMap" type="cn.cloudwalk.elevator.passrule.dto.ImageRuleRefResultDto">
|
||||
<result column="id" property="id" jdbcType="VARCHAR"/>
|
||||
<result column="business_id" property="businessId" jdbcType="VARCHAR"/>
|
||||
<result column="name" property="name" jdbcType="VARCHAR"/>
|
||||
<result column="start_time" property="startTime" jdbcType="BIGINT"/>
|
||||
<result column="end_time" property="endTime" jdbcType="BIGINT"/>
|
||||
<result column="zone_id" property="zoneId" jdbcType="VARCHAR"/>
|
||||
<result column="zone_name" property="zoneName" jdbcType="VARCHAR"/>
|
||||
<result column="parent_rule" property="parentRule" jdbcType="VARCHAR"/>
|
||||
<result column="person_id" property="personId" jdbcType="VARCHAR"/>
|
||||
<result column="include_labels" property="includeLabels" jdbcType="VARCHAR"/>
|
||||
<result column="include_organizations" property="includeOrganizations" jdbcType="VARCHAR"/>
|
||||
<result column="exclude_labels" property="excludeLabels" jdbcType="VARCHAR"/>
|
||||
<result column="is_default" property="isDefault" jdbcType="INTEGER"/>
|
||||
|
||||
<result column="create_time" property="createTime" jdbcType="BIGINT"/>
|
||||
<result column="last_update_time" property="lastUpdateTime" jdbcType="BIGINT"/>
|
||||
</resultMap>
|
||||
|
||||
<resultMap id="resultMap2" type="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageResultDto">
|
||||
<result column="zone_id" property="zoneId" jdbcType="VARCHAR"/>
|
||||
<result column="zone_name" property="zoneName" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<select id="listRuleByZoneIdExtDefault"
|
||||
resultType="java.lang.String">
|
||||
SELECT id
|
||||
FROM image_rule_ref
|
||||
WHERE zone_id = #{zoneId,jdbcType=VARCHAR}
|
||||
AND is_default = 0
|
||||
AND parent_rule IS NULL
|
||||
</select>
|
||||
|
||||
<select id="listPersonDelByZoneId" resultType="java.lang.String">
|
||||
SELECT person_id
|
||||
FROM image_rule_ref
|
||||
WHERE zone_id = #{zoneId,jdbcType=VARCHAR}
|
||||
AND person_delete = 1
|
||||
</select>
|
||||
|
||||
<select id="listPersonDelByPersonId" resultType="java.lang.String">
|
||||
SELECT zone_id
|
||||
FROM image_rule_ref
|
||||
WHERE person_id = #{personId,jdbcType=VARCHAR}
|
||||
AND person_delete = 1
|
||||
</select>
|
||||
|
||||
<select id="listByParentRule" resultMap="resultMap">
|
||||
SELECT *
|
||||
FROM image_rule_ref
|
||||
WHERE parent_rule in
|
||||
<foreach collection="parentRuleIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</select>
|
||||
|
||||
<select id="listByPersonId" resultMap="resultMap">
|
||||
SELECT *
|
||||
FROM image_rule_ref
|
||||
WHERE person_id = #{personId,jdbcType=VARCHAR}
|
||||
and person_delete = 0
|
||||
</select>
|
||||
|
||||
<select id="listByLabelId" resultMap="resultMap">
|
||||
SELECT *
|
||||
FROM image_rule_ref
|
||||
WHERE include_labels = #{labelId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
<select id="listByOrgId" resultMap="resultMap">
|
||||
SELECT *
|
||||
FROM image_rule_ref
|
||||
WHERE include_organizations = #{orgId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
<select id="listByPersonInfo" parameterType="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto" resultMap="resultMap2">
|
||||
SELECT DISTINCT zone_id,zone_name
|
||||
FROM image_rule_ref
|
||||
WHERE person_id = #{personId,jdbcType=VARCHAR}
|
||||
AND person_delete = 0
|
||||
<if test="includeOrganizations != null and includeOrganizations.size > 0">
|
||||
OR include_organizations in
|
||||
<foreach collection="includeOrganizations" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
and zone_id not in (
|
||||
select zone_id from image_rule_ref
|
||||
where person_id = #{personId,jdbcType=VARCHAR}
|
||||
AND person_delete = 1
|
||||
)
|
||||
</if>
|
||||
<if test="includeLabels != null and includeLabels.size > 0">
|
||||
OR include_labels in
|
||||
<foreach collection="includeLabels" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
and zone_id not in (
|
||||
select zone_id from image_rule_ref
|
||||
where person_id = #{personId,jdbcType=VARCHAR}
|
||||
AND person_delete = 1
|
||||
)
|
||||
</if>
|
||||
order by CAST(zone_name as signed) ASC
|
||||
</select>
|
||||
|
||||
<select id="listByRestructure"
|
||||
parameterType="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleImageDto" resultMap="resultMap2">
|
||||
SELECT DISTINCT zone_id,zone_name
|
||||
FROM image_rule_ref
|
||||
WHERE 1=1
|
||||
AND zone_name IS NOT NULL
|
||||
<if test="includeOrganizations != null and includeOrganizations.size > 0">
|
||||
and include_organizations in
|
||||
<foreach collection="includeOrganizations" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="includeLabels != null and includeLabels.size > 0">
|
||||
and include_labels in
|
||||
<foreach collection="includeLabels" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
order by CAST(zone_name as signed) ASC
|
||||
</select>
|
||||
|
||||
<select id="listFloorsByRestructure"
|
||||
resultType="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleLabelResultDto">
|
||||
SELECT DISTINCT zone_id as zoneId,zone_name as zoneName,include_labels as labelId
|
||||
FROM image_rule_ref
|
||||
WHERE 1=1
|
||||
<if test="includeLabels != null and includeLabels.size > 0">
|
||||
and include_labels in
|
||||
<foreach collection="includeLabels" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
order by CAST(zone_name as signed) ASC
|
||||
</select>
|
||||
|
||||
<select id="listZoneInfoByIds" resultMap="resultMap2">
|
||||
SELECT DISTINCT zone_id ,zone_name
|
||||
FROM image_rule_ref
|
||||
WHERE
|
||||
zone_name IS NOT NULL
|
||||
AND zone_id in
|
||||
<foreach collection="zoneIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
order by CAST(zone_name as signed) ASC
|
||||
</select>
|
||||
|
||||
<select id="listByNotZoneIds" resultMap="resultMap2">
|
||||
SELECT DISTINCT zone_id ,zone_name
|
||||
FROM image_rule_ref
|
||||
WHERE
|
||||
zone_name IS NOT NULL
|
||||
<if test="request.zoneId != null and request.zoneId != ''">
|
||||
and zone_id = #{request.zoneId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="request.zoneIds != null and request.zoneIds.size > 0">
|
||||
AND zone_id not in
|
||||
<foreach collection="request.zoneIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
order by CAST(zone_name as signed) ASC
|
||||
</select>
|
||||
|
||||
<select id="listByPersonList" parameterType="cn.cloudwalk.elevator.passrule.dto.AcsPassRulePersonListDto" resultMap="resultMap">
|
||||
SELECT *
|
||||
FROM image_rule_ref
|
||||
WHERE person_delete = 0
|
||||
AND person_id in
|
||||
<foreach collection="personIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
<if test="includeOrganizations != null and includeOrganizations.size > 0">
|
||||
OR include_organizations in
|
||||
<foreach collection="includeOrganizations" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="includeLabels != null and includeLabels.size > 0">
|
||||
OR include_labels in
|
||||
<foreach collection="includeLabels" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
order by CAST(zone_name as signed) ASC
|
||||
</select>
|
||||
|
||||
<select id="getDefaultByZoneId" resultMap="resultMap">
|
||||
SELECT *
|
||||
FROM image_rule_ref
|
||||
WHERE zone_id = #{zoneId,jdbcType=VARCHAR}
|
||||
AND is_default = 1
|
||||
</select>
|
||||
|
||||
<select id="getById" resultMap="resultMap">
|
||||
SELECT *
|
||||
FROM image_rule_ref
|
||||
WHERE id = #{id,jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
<select id="getByRuleName" resultType="java.lang.String">
|
||||
SELECT id
|
||||
FROM image_rule_ref
|
||||
WHERE zone_id = #{zoneId,jdbcType=VARCHAR}
|
||||
and name = #{ruleName,jdbcType=VARCHAR}
|
||||
and parent_rule IS NULL
|
||||
and person_delete IS NULL
|
||||
</select>
|
||||
|
||||
<select id="getByPersonIdAndZoneId" resultMap="resultMap">
|
||||
SELECT *
|
||||
FROM image_rule_ref
|
||||
WHERE zone_id = #{zoneId}
|
||||
and person_id in
|
||||
<foreach collection="personIds" item="item" open="(" close=")" separator=",">
|
||||
#{item}
|
||||
</foreach>
|
||||
</select>
|
||||
|
||||
<select id="getDelByPersonIdAndZoneId" resultMap="resultMap">
|
||||
SELECT *
|
||||
FROM image_rule_ref
|
||||
WHERE zone_id = #{zoneId}
|
||||
and person_id = #{personId}
|
||||
and person_delete = 1
|
||||
</select>
|
||||
|
||||
<select id="countPersonIdByZoneId" resultType="java.lang.String">
|
||||
SELECT person_id
|
||||
FROM image_rule_ref
|
||||
WHERE zone_id = #{zoneId,jdbcType=VARCHAR}
|
||||
AND person_delete = 0
|
||||
</select>
|
||||
|
||||
<select id="page" parameterType="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleQueryDto" resultMap="resultMap">
|
||||
select *
|
||||
from image_rule_ref
|
||||
<where>
|
||||
<if test="id != null and id != ''">
|
||||
and id = #{id, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="businessId != null and businessId != ''">
|
||||
and business_id = #{businessId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="zoneId != null and zoneId !=''">
|
||||
and zone_id = #{zoneId,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="ids != null and ids.size > 0">
|
||||
and id in
|
||||
<foreach collection="ids" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</if>
|
||||
and parent_rule IS NULL
|
||||
and person_delete IS NULL
|
||||
</where>
|
||||
order by last_update_time desc
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
<insert id="insert" parameterType="cn.cloudwalk.elevator.passrule.dto.ImageRuleRefAddDto">
|
||||
insert into image_rule_ref (id, business_id, name, zone_id, zone_name,
|
||||
start_time, end_time, person_id, include_labels,include_organizations,
|
||||
exclude_labels, is_default, create_time, last_update_time,parent_rule,person_delete)
|
||||
values (#{id,jdbcType=VARCHAR}, #{businessId,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
|
||||
#{zoneId,jdbcType=VARCHAR}, #{zoneName,jdbcType=VARCHAR},
|
||||
#{startTime,jdbcType=BIGINT},#{endTime,jdbcType=BIGINT},
|
||||
#{personId,jdbcType=VARCHAR}, #{includeLabels,jdbcType=VARCHAR},
|
||||
#{includeOrganizations,jdbcType=VARCHAR},
|
||||
#{excludeLabels,jdbcType=VARCHAR},
|
||||
#{isDefault,jdbcType=INTEGER},
|
||||
#{createTime,jdbcType=BIGINT},
|
||||
#{lastUpdateTime,jdbcType=BIGINT},#{parentRule,jdbcType=VARCHAR},#{personDelete,jdbcType=INTEGER})
|
||||
</insert>
|
||||
|
||||
<insert id="insertList" parameterType="cn.cloudwalk.elevator.passrule.dto.ImageRuleRefAddDto">
|
||||
insert into image_rule_ref (id, business_id, name, zone_id, zone_name,
|
||||
start_time, end_time, person_id, include_labels,include_organizations,
|
||||
exclude_labels, is_default, create_time, last_update_time,parent_rule,person_delete)
|
||||
values
|
||||
<foreach collection="dtoList" item="item" separator=",">
|
||||
(#{item.id,jdbcType=VARCHAR}, #{item.businessId,jdbcType=VARCHAR}, #{item.name,jdbcType=VARCHAR},
|
||||
#{item.zoneId,jdbcType=VARCHAR}, #{item.zoneName,jdbcType=VARCHAR},
|
||||
#{item.startTime,jdbcType=BIGINT},#{item.endTime,jdbcType=BIGINT},
|
||||
#{item.personId,jdbcType=VARCHAR}, #{item.includeLabels,jdbcType=VARCHAR},
|
||||
#{item.includeOrganizations,jdbcType=VARCHAR},
|
||||
#{item.excludeLabels,jdbcType=VARCHAR},
|
||||
#{item.isDefault,jdbcType=INTEGER},
|
||||
#{item.createTime,jdbcType=BIGINT},
|
||||
#{item.lastUpdateTime,jdbcType=BIGINT},#{item.parentRule,jdbcType=VARCHAR},#{item.personDelete,jdbcType=INTEGER})
|
||||
</foreach>
|
||||
</insert>
|
||||
|
||||
<delete id="deleteByZoneIdAndName">
|
||||
DELETE FROM image_rule_ref
|
||||
WHERE zone_id = #{zoneId,jdbcType=VARCHAR}
|
||||
and name = #{oldName,jdbcType=VARCHAR}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteById">
|
||||
DELETE FROM image_rule_ref
|
||||
WHERE id = #{id,jdbcType=VARCHAR}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteByParentRule">
|
||||
DELETE FROM image_rule_ref
|
||||
WHERE parent_rule = #{parentRule,jdbcType=VARCHAR}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteByPersonIdsIsDel">
|
||||
DELETE FROM image_rule_ref
|
||||
WHERE zone_id = #{zoneId}
|
||||
AND person_delete = 1
|
||||
AND person_id in
|
||||
<foreach collection="personIds" item="item" open="(" close=")" separator=",">
|
||||
#{item,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
<delete id="deleteByPersonId">
|
||||
UPDATE image_rule_ref
|
||||
SET person_delete = 1
|
||||
WHERE zone_id = #{zoneId}
|
||||
AND person_delete = 0
|
||||
AND person_id = #{personId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteByOrgAndLabel" parameterType="cn.cloudwalk.elevator.passrule.dto.AcsPassRuleDeleteDto">
|
||||
DELETE FROM image_rule_ref
|
||||
WHERE zone_id = #{zoneId}
|
||||
<if test="orgId != null and orgId != ''">
|
||||
and include_organizations = #{orgId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="labelId != null and labelId != ''">
|
||||
and include_labels = #{labelId, jdbcType=VARCHAR}
|
||||
</if>
|
||||
</delete>
|
||||
|
||||
</mapper>
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
package cn.cloudwalk.elevator.record.mapper;
|
||||
|
||||
import cn.cloudwalk.elevator.record.dto.SendRecordTimeAddDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.SendRecordTimeEditDTO;
|
||||
import cn.cloudwalk.elevator.record.dto.SendRecordTimeResultDTO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface SendRecordTimeMapper {
|
||||
SendRecordTimeResultDTO getByType(@Param("type") Integer paramInteger);
|
||||
|
||||
Integer add(SendRecordTimeAddDTO paramSendRecordTimeAddDTO);
|
||||
|
||||
Integer update(SendRecordTimeEditDTO paramSendRecordTimeEditDTO);
|
||||
}
|
||||
|
||||
|
||||
/* Location: D:\星中心\cw-elevator-application-V1.0.0.20211103\cw-elevator-application-V1.0.0.20211103\lib\cw-elevator-application-data-1.0-SNAPSHOT.jar!\cn\cloudwalk\elevator\record\mapper\SendRecordTimeMapper.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.cloudwalk.elevator.record.mapper.SendRecordTimeMapper">
|
||||
<resultMap id="resultMap" type="cn.cloudwalk.elevator.record.dto.SendRecordTimeResultDTO">
|
||||
<result column="time" jdbcType="BIGINT" property="time"/>
|
||||
<result column="type" jdbcType="TINYINT" property="type"/>
|
||||
</resultMap>
|
||||
<insert id="add" parameterType="cn.cloudwalk.elevator.record.dto.SendRecordTimeAddDTO">
|
||||
insert into send_record_time (time, type)
|
||||
values (#{time,jdbcType=BIGINT}, #{type,jdbcType=TINYINT}
|
||||
</insert>
|
||||
|
||||
<update id="update" parameterType="cn.cloudwalk.elevator.record.dto.SendRecordTimeEditDTO">
|
||||
update send_record_time
|
||||
<trim prefix="set" suffixOverrides=",">
|
||||
<if test="time != null">
|
||||
time = #{time, jdbcType=BIGINT},
|
||||
</if>
|
||||
</trim>
|
||||
<where>
|
||||
type = #{type, jdbcType=TINYINT}
|
||||
</where>
|
||||
</update>
|
||||
|
||||
<select id="getByType" resultMap="resultMap">
|
||||
SELECT time,type
|
||||
FROM send_record_time
|
||||
WHERE type = #{type}
|
||||
</select>
|
||||
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user