|
|
@@ -0,0 +1,122 @@
|
|
|
+package com.xunmei.system.util;
|
|
|
+
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
|
+import com.alibaba.excel.annotation.write.style.ContentRowHeight;
|
|
|
+import com.alibaba.excel.annotation.write.style.HeadRowHeight;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 安全保卫工作情况统计
|
|
|
+ * @author :LuoWei
|
|
|
+ * @date : 2023/11/29
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@ColumnWidth(15) //列宽,最大值为255
|
|
|
+@HeadRowHeight(16) //表头行高
|
|
|
+@ContentRowHeight(16) //数据行高
|
|
|
+public class SecurityWorkExport {
|
|
|
+ @ExcelProperty(value = "序号", index = 0)
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String xh;
|
|
|
+ @ExcelProperty(value = "地区", index = 1)
|
|
|
+ private String city;
|
|
|
+ @ExcelProperty(value = "单位", index = 2)
|
|
|
+ private String orgName;
|
|
|
+ @ExcelProperty(value = "营业网点总量", index = 3)
|
|
|
+ private Integer networkNumber;
|
|
|
+ @ExcelProperty(value = "营业网点达标数量(符合GA38-2015、2021标准)", index = 4)
|
|
|
+ private Integer reachNumber;
|
|
|
+ @ExcelProperty(value = "自有产权网点数", index = 5)
|
|
|
+private Integer ownPropertyNumber;
|
|
|
+ @ExcelProperty(value = "区域外网点数", index = 6)
|
|
|
+ private Integer areaOutsideNumber;
|
|
|
+ @ExcelProperty(value = "业务库总量", index = 7)
|
|
|
+ private Integer businessLibraryTotal;
|
|
|
+ @ExcelProperty(value = "一类库", index = 7)
|
|
|
+ private Integer oneLibrary;
|
|
|
+ @ExcelProperty(value = "二类库", index = 7)
|
|
|
+ private Integer twoLibrary;
|
|
|
+ @ExcelProperty(value = "三类库", index = 7)
|
|
|
+ private Integer threeLibrary;
|
|
|
+ @ExcelProperty(value = "四类库", index = 7)
|
|
|
+ private Integer fourLibrary;
|
|
|
+ @ExcelProperty(value = "保管箱库", index = 7)
|
|
|
+ private Integer collectLibrary;
|
|
|
+ @ExcelProperty(value = "在行式总量", index = 7)
|
|
|
+ private Integer onLineTotal;
|
|
|
+ @ExcelProperty(value = "在行式达标数量(符合GA38-2021标准)", index = 7)
|
|
|
+ private Integer onLineReachNumber;
|
|
|
+ @ExcelProperty(value = "离行式总量", index = 7)
|
|
|
+ private Integer departureTotal;
|
|
|
+ @ExcelProperty(value = "离行式达标数量(符合GA38-2021标准)", index = 7)
|
|
|
+ private Integer departureReachNumber;
|
|
|
+ @ExcelProperty(value = "自助设备总数", index = 7)
|
|
|
+ private Integer selfServiceDevicesTotal;
|
|
|
+ @ExcelProperty(value = "在行大堂式机具", index = 7)
|
|
|
+ private Integer onLineLobbyImplement;
|
|
|
+ @ExcelProperty(value = "在行式穿墙式机具", index = 7)
|
|
|
+ private Integer onLineThroughWalls;
|
|
|
+ @ExcelProperty(value = "离行式大堂式机具", index = 7)
|
|
|
+ private Integer departureLobbyImplement;
|
|
|
+ @ExcelProperty(value = "离行式穿墙式机具", index = 7)
|
|
|
+ private Integer departureThroughWalls;
|
|
|
+ @ExcelProperty(value = "中心建设时间(年)", index = 7)
|
|
|
+ private String centerConstructionTime;
|
|
|
+ @ExcelProperty(value = "监控平台最近一次升级改造时间(年", index = 7)
|
|
|
+ private String transformTime;
|
|
|
+ @ExcelProperty(value = "监控中心平台品牌", index = 7)
|
|
|
+ private String brand;
|
|
|
+ @ExcelProperty(value = "视频监控摄像头总路数", index = 7)
|
|
|
+ private Integer cameraTotal;
|
|
|
+ @ExcelProperty(value = "是否实现远程控制和实时授权的功能", index = 7)
|
|
|
+ private String remoteControl;
|
|
|
+ @ExcelProperty(value = "本地值守网点数量(由员工进行同楼异地值守)", index = 7)
|
|
|
+ private Integer localDutyNetworkNumber;
|
|
|
+ @ExcelProperty(value = "异地值守网点数量(由监控中心进行远程值守)", index = 7)
|
|
|
+ private Integer remoteDutyNetworkNumber;
|
|
|
+ @ExcelProperty(value = "监控中心安保卫持证人数", index = 7)
|
|
|
+ private Integer certificatePeopleNumber;
|
|
|
+ @ExcelProperty(value = "人员合计", index = 7)
|
|
|
+ private Integer certificateTotal;
|
|
|
+ @ExcelProperty(value = "其中,内部保安人数(含派遣)", index = 7)
|
|
|
+ private Integer internalCertificateNumber;
|
|
|
+ @ExcelProperty(value = "其中,外聘保安人数", index = 7)
|
|
|
+ private Integer outsourceCertificateNumber;
|
|
|
+ @ExcelProperty(value = "配有保安网点数 ", index = 7)
|
|
|
+ private Integer haveSecurityNetworkNumber;
|
|
|
+ @ExcelProperty(value = "本季度辖内所有营业网点组织开展自查次数(每个网点检查数量的累计数)", index = 7)
|
|
|
+ private Integer quarterSelfInspectNumber;
|
|
|
+ @ExcelProperty(value = "本季度度总行(联社)组织开展安全教育次数", index = 7)
|
|
|
+ private Integer quarterSafetyEducationNumber;
|
|
|
+ @ExcelProperty(value = "共计参与安全教育员工人次", index = 7)
|
|
|
+ private Integer safetyEducationPeopleNumber;
|
|
|
+ @ExcelProperty(value = "本季度开展预案演练次数", index = 7)
|
|
|
+ private Integer quarterDrillNumber;
|
|
|
+ @ExcelProperty(value = "参与预案演练员工人次", index = 7)
|
|
|
+ private Integer quarterDrillPeopleNumber;
|
|
|
+ @ExcelProperty(value = "本季度辖内所有营业网点开展预案演练次数(每个网点演练次数的累计数)", index = 7)
|
|
|
+ private Integer quarterAllNetworkDrillNumber;
|
|
|
+ @ExcelProperty(value = "辖内所有营业网点参与预案演练员工人次", index = 7)
|
|
|
+ private Integer quarterAllNetworkDrillPeopleNumber;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|