海康门禁sdk对接

This commit is contained in:
guo 2024-03-14 10:48:35 +08:00
parent 9e49309773
commit b94680ae06
2 changed files with 5 additions and 4 deletions

View File

@ -22,7 +22,7 @@ import io.swagger.annotations.ApiModelProperty;
@ApiModel(value="ProjectUfaceConfig实体类",description="ProjectUfaceConfig") @ApiModel(value="ProjectUfaceConfig实体类",description="ProjectUfaceConfig")
public class ProjectUfaceConfig implements Serializable { public class ProjectUfaceConfig implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/**id*/ /**id*/
@TableId(type = IdType.ASSIGN_ID) @TableId(type = IdType.ASSIGN_ID)
@ApiModelProperty(value="id") @ApiModelProperty(value="id")
@ -31,9 +31,7 @@ public class ProjectUfaceConfig implements Serializable {
@Excel(name = "项目SN", width = 15) @Excel(name = "项目SN", width = 15)
@ApiModelProperty(value="项目SN") @ApiModelProperty(value="项目SN")
private java.lang.String projectSn; private java.lang.String projectSn;
/**1杭州宇泛智能科技,2用jdpush推送,3.mqtt,4.芊熠智能*/ @ApiModelProperty(value = "1杭州宇泛智能科技,2用jdpush推送,3.mqtt,4.芊熠智能,5佳信捷,6佳信捷新设备,7海康门禁")
@Excel(name = "1杭州宇泛智能科技,2用jdpush推送,3.mqtt,4.芊熠智能,5佳信捷,6佳信捷新设备", width = 15)
@ApiModelProperty(value="1杭州宇泛智能科技,2用jdpush推送,3.mqtt,4.芊熠智能,5佳信捷,6佳信捷新设备")
private java.lang.Integer supplierType; private java.lang.Integer supplierType;
/**项目应用Id*/ /**项目应用Id*/
@Excel(name = "项目应用Id", width = 15) @Excel(name = "项目应用Id", width = 15)

View File

@ -330,6 +330,9 @@ public class ProjectUfaceConfigServiceImpl extends ServiceImpl<ProjectUfaceConfi
} else if (tempProjectUfaceConfig.getSupplierType() == 6) { } else if (tempProjectUfaceConfig.getSupplierType() == 6) {
//佳信捷新设备 //佳信捷新设备
JxjNewUfaceDevUtil.addOrUpdatePerson(workerInfo, tempProjectUfaceConfig, basePath, devSn, jxjDevImageType); JxjNewUfaceDevUtil.addOrUpdatePerson(workerInfo, tempProjectUfaceConfig, basePath, devSn, jxjDevImageType);
} else if (tempProjectUfaceConfig.getSupplierType() == 7) {
//海康门禁
//JxjNewUfaceDevUtil.addOrUpdatePerson(workerInfo,devSn);
} }
} }