Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tagManager
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanmw
tagManager
Commits
51c56113
Commit
51c56113
authored
Apr 13, 2020
by
zhangkb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改系统实体属性和系统导入导出接口
parent
62f35eef
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
418 additions
and
324 deletions
+418
-324
SysTag.java
src/main/java/com/keymobile/tagmanager/model/SysTag.java
+347
-242
TagFileService.java
...java/com/keymobile/tagmanager/service/TagFileService.java
+71
-82
No files found.
src/main/java/com/keymobile/tagmanager/model/SysTag.java
View file @
51c56113
...
@@ -27,122 +27,221 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
...
@@ -27,122 +27,221 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
private
String
serialNumber
;
private
String
serialNumber
;
@Excel
(
name
=
"系统代码"
,
orderNum
=
"5"
,
width
=
30
)
@Excel
(
name
=
"系统代码"
,
orderNum
=
"5"
,
width
=
30
)
private
String
systemCode
;
private
String
systemCode
;
@Excel
(
name
=
"系统类型"
,
orderNum
=
"6"
,
width
=
30
)
@Excel
(
name
=
"曾用名/别名"
,
orderNum
=
"6"
,
width
=
30
)
private
String
systemType
;
@Excel
(
name
=
"曾用名/别名"
,
orderNum
=
"7"
,
width
=
30
)
private
String
alias
;
private
String
alias
;
@Excel
(
name
=
"开发支出资产主数据号"
,
orderNum
=
"8"
,
width
=
30
)
@Excel
(
name
=
"系统状态"
,
orderNum
=
"7"
,
width
=
30
)
private
String
devNo
;
private
String
systemState
;
@Excel
(
name
=
"无形资产主数据号"
,
orderNum
=
"9"
,
width
=
30
)
@Excel
(
name
=
"系统类型"
,
orderNum
=
"8"
,
width
=
30
)
private
String
intangibleNo
;
private
String
systemType
;
@Excel
(
name
=
"立项号"
,
orderNum
=
"10"
,
width
=
30
)
@Excel
(
name
=
"系统简介"
,
orderNum
=
"9"
,
width
=
30
)
private
String
itemNo
;
private
String
systemIntroduction
;
@Excel
(
name
=
"业务域"
,
orderNum
=
"11"
,
width
=
30
)
@Excel
(
name
=
"所属领域"
,
orderNum
=
"10"
,
width
=
30
)
private
String
businessDomain
;
@Excel
(
name
=
"业务流"
,
orderNum
=
"12"
,
width
=
30
)
private
String
businessFlow
;
@Excel
(
name
=
"所属板块"
,
orderNum
=
"13"
,
width
=
30
)
private
String
catalog
;
private
String
catalog
;
@Excel
(
name
=
"所属部门"
,
orderNum
=
"14"
,
width
=
30
)
@Excel
(
name
=
"所属板块"
,
orderNum
=
"11"
,
width
=
30
)
private
String
plate
;
@Excel
(
name
=
"所属部门"
,
orderNum
=
"12"
,
width
=
30
)
private
String
dept
;
private
String
dept
;
@Excel
(
name
=
"系统简介"
,
orderNum
=
"15"
,
width
=
30
)
@Excel
(
name
=
"IP地址"
,
orderNum
=
"13"
,
width
=
30
)
private
String
systemIntroduction
;
@Excel
(
name
=
"网址"
,
orderNum
=
"16"
,
width
=
30
)
private
String
URL
;
@Excel
(
name
=
"IP地址"
,
orderNum
=
"17"
,
width
=
30
)
private
String
ip
;
private
String
ip
;
@Excel
(
name
=
"系统当前联系人"
,
orderNum
=
"18"
,
width
=
30
)
@Excel
(
name
=
"系统访问地址"
,
orderNum
=
"14"
,
width
=
30
)
private
String
URL
;
@Excel
(
name
=
"用户代表"
,
orderNum
=
"15"
,
width
=
30
)
private
String
contact
;
private
String
contact
;
@Excel
(
name
=
"业务系统编号"
,
orderNum
=
"19"
,
width
=
30
)
@Excel
(
name
=
"用户代表员工号"
,
orderNum
=
"16"
,
width
=
30
)
private
String
businessSystemNo
;
private
String
contactPeople
;
@Excel
(
name
=
"项目过程文档"
,
orderNum
=
"20"
,
width
=
30
)
@Excel
(
name
=
"使用部门"
,
orderNum
=
"17"
,
width
=
30
)
private
String
documents
;
private
String
organ
;
@Excel
(
name
=
"系统创建负责人"
,
orderNum
=
"21"
,
width
=
30
)
@Excel
(
name
=
"系统授权人数"
,
orderNum
=
"18"
,
width
=
30
)
private
String
systemPersonInCharge
;
private
String
systemPeople
;
@Excel
(
name
=
"研发人员名单"
,
orderNum
=
"22"
,
width
=
30
)
@Excel
(
name
=
"其他说明项"
,
orderNum
=
"19"
,
width
=
30
)
private
String
otherInstructions
;
@Excel
(
name
=
"记录创建日期"
,
orderNum
=
"20"
,
width
=
30
)
private
String
recordCreationDate
;
@Excel
(
name
=
"记录更新日期"
,
orderNum
=
"21"
,
width
=
30
)
private
String
recordUpdateDate
;
@Excel
(
name
=
"业务牵头部门"
,
orderNum
=
"22"
,
width
=
30
)
private
String
informationApplicationDepartment
;
@Excel
(
name
=
"业务牵头部门联系人"
,
orderNum
=
"23"
,
width
=
30
)
private
String
fillingPerson
;
@Excel
(
name
=
"业务域"
,
orderNum
=
"24"
,
width
=
30
)
private
String
businessDomain
;
@Excel
(
name
=
"立项号"
,
orderNum
=
"25"
,
width
=
30
)
private
String
itemNo
;
@Excel
(
name
=
"无形资产主数据号"
,
orderNum
=
"26"
,
width
=
30
)
private
String
intangibleNo
;
@Excel
(
name
=
"开发支出资产主数据号"
,
orderNum
=
"27"
,
width
=
30
)
private
String
devNo
;
@Excel
(
name
=
"系统建设实施方"
,
orderNum
=
"28"
,
width
=
30
)
private
String
constructionDepartment
;
@Excel
(
name
=
"系统建设实施方项目经理"
,
orderNum
=
"29"
,
width
=
30
)
private
String
personnelList
;
private
String
personnelList
;
@Excel
(
name
=
"系统授权用户清单"
,
orderNum
=
"23"
,
width
=
30
)
@Excel
(
name
=
"系统功能点"
,
orderNum
=
"30"
,
width
=
30
)
private
String
userList
;
@Excel
(
name
=
"系统功能点"
,
orderNum
=
"24"
,
width
=
30
)
private
String
systemFunction
;
private
String
systemFunction
;
@Excel
(
name
=
"系统功能模块描述"
,
orderNum
=
"
25"
,
width
=
30
)
@Excel
(
name
=
"系统功能模块描述"
,
orderNum
=
"
31"
,
width
=
30
)
private
String
moduleDescription
;
private
String
moduleDescription
;
@Excel
(
name
=
"
系统调用关系"
,
orderNum
=
"26"
,
width
=
30
)
@Excel
(
name
=
"
调用接口名称"
,
orderNum
=
"32"
,
width
=
30
)
private
String
callRelationship
;
private
String
callRelationship
;
@Excel
(
name
=
"对应的能力块"
,
orderNum
=
"27"
,
width
=
30
)
@Excel
(
name
=
"系统上线时间"
,
orderNum
=
"33"
,
width
=
30
)
private
String
capabilityBlock
;
private
String
systemOnlineTime
;
@Excel
(
name
=
"主要数据"
,
orderNum
=
"28"
,
width
=
30
)
@Excel
(
name
=
"项目实际投入人力"
,
orderNum
=
"34"
,
width
=
30
)
private
String
masterData
;
private
String
projectHumanInput
;
@Excel
(
name
=
"系统功能分类"
,
orderNum
=
"29"
,
width
=
30
)
@Excel
(
name
=
"项目实际投入金额"
,
orderNum
=
"35"
,
width
=
30
)
private
String
functionClassification
;
private
String
projectMoneyInput
;
@Excel
(
name
=
"是否重要信息系统"
,
orderNum
=
"30"
,
width
=
30
)
@Excel
(
name
=
"项目过程文档存放地址"
,
orderNum
=
"36"
,
width
=
30
)
private
String
documents
;
@Excel
(
name
=
"运维类型"
,
orderNum
=
"37"
,
width
=
30
)
private
String
maintenanceClassification
;
@Excel
(
name
=
"系统定级"
,
orderNum
=
"38"
,
width
=
30
)
private
String
importantSystem
;
private
String
importantSystem
;
@Excel
(
name
=
"使用机构"
,
orderNum
=
"31"
,
width
=
30
)
@Excel
(
name
=
"系统安全保护等级"
,
orderNum
=
"39"
,
width
=
30
)
private
String
organ
;
private
String
securityProtectionLevel
;
@Excel
(
name
=
"服务对象"
,
orderNum
=
"32"
,
width
=
30
)
@Excel
(
name
=
"系统运维实施方"
,
orderNum
=
"40"
,
width
=
30
)
private
String
serviceObject
;
@Excel
(
name
=
"业务负责部门"
,
orderNum
=
"33"
,
width
=
30
)
private
String
businessDepartment
;
@Excel
(
name
=
"系统建设部门"
,
orderNum
=
"34"
,
width
=
30
)
private
String
constructionDepartment
;
@Excel
(
name
=
"系统运维部门"
,
orderNum
=
"35"
,
width
=
30
)
private
String
operationDepartment
;
private
String
operationDepartment
;
@Excel
(
name
=
"运行服务窗口"
,
orderNum
=
"36"
,
width
=
30
)
@Excel
(
name
=
"系统运维时间"
,
orderNum
=
"41"
,
width
=
30
)
private
String
serviceWindow
;
private
String
operationTime
;
@Excel
(
name
=
"系统上线时间"
,
orderNum
=
"37"
,
width
=
30
)
@Excel
(
name
=
"运维负责人A"
,
orderNum
=
"42"
,
width
=
30
)
private
String
systemOnlineTime
;
private
String
operationPeoplea
;
@Excel
(
name
=
"系统下线时间"
,
orderNum
=
"38"
,
width
=
30
)
@Excel
(
name
=
"运维负责人B"
,
orderNum
=
"43"
,
width
=
30
)
private
String
operationPeopleb
;
@Excel
(
name
=
"月均系统使用人数"
,
orderNum
=
"44"
,
width
=
30
)
private
String
systemUsePerMonth
;
@Excel
(
name
=
"月均用户登录次数"
,
orderNum
=
"45"
,
width
=
30
)
private
String
userLoginPerMonth
;
@Excel
(
name
=
"年均需求变更量"
,
orderNum
=
"46"
,
width
=
30
)
private
String
needChangePerYear
;
@Excel
(
name
=
"年均基础工单量"
,
orderNum
=
"47"
,
width
=
30
)
private
String
wordOrderPerYear
;
@Excel
(
name
=
"系统退役时间"
,
orderNum
=
"48"
,
width
=
30
)
private
String
systemOfflineTime
;
private
String
systemOfflineTime
;
@Excel
(
name
=
"应用系统主版本"
,
orderNum
=
"39"
,
width
=
30
)
private
String
mainVersion
;
@Excel
(
name
=
"系统安全保护等级"
,
orderNum
=
"40"
,
width
=
30
)
// @Excel(name = "业务流", orderNum = "12", width=30)
private
String
securityProtectionLevel
;
// private String businessFlow;
@Excel
(
name
=
"系统维护分类"
,
orderNum
=
"41"
,
width
=
30
)
// @Excel(name = "业务系统编号", orderNum = "19", width=30)
private
String
maintenanceClassification
;
// private String businessSystemNo;
@Excel
(
name
=
"节点名称"
,
orderNum
=
"42"
,
width
=
30
)
// @Excel(name = "系统创建负责人", orderNum = "21", width=30)
private
String
nodeName
;
// private String systemPersonInCharge;
@Excel
(
name
=
"硬件"
,
orderNum
=
"43"
,
width
=
30
)
// @Excel(name = "系统授权用户清单", orderNum = "23", width=30)
private
String
hardware
;
// private String userList;
@Excel
(
name
=
"系统软件及版本号"
,
orderNum
=
"44"
,
width
=
30
)
// @Excel(name = "对应的能力块", orderNum = "27", width=30)
private
String
softwareAndVersionNo
;
// private String capabilityBlock;
@Excel
(
name
=
"部署地点"
,
orderNum
=
"45"
,
width
=
30
)
// @Excel(name = "主要数据", orderNum = "28", width=30)
private
String
locationOfDeployment
;
// private String masterData;
@Excel
(
name
=
"灾备情况"
,
orderNum
=
"46"
,
width
=
30
)
// @Excel(name = "系统功能分类", orderNum = "29", width=30)
private
String
disasterPreparedness
;
// private String functionClassification;
@Excel
(
name
=
"第三方连接"
,
orderNum
=
"47"
,
width
=
30
)
// @Excel(name = "服务对象", orderNum = "32", width=30)
private
String
thirdPartyConnection
;
// private String serviceObject;
@Excel
(
name
=
"系统关联关系"
,
orderNum
=
"48"
,
width
=
30
)
// @Excel(name = "业务负责部门", orderNum = "33", width=30)
private
String
systemAssociation
;
// private String businessDepartment;
@Excel
(
name
=
"其他说明项"
,
orderNum
=
"49"
,
width
=
30
)
// @Excel(name = "运行服务窗口", orderNum = "36", width=30)
private
String
otherInstructions
;
// private String serviceWindow;
@Excel
(
name
=
"信息申报部门"
,
orderNum
=
"50"
,
width
=
30
)
// @Excel(name = "应用系统主版本", orderNum = "39", width=30)
private
String
informationApplicationDepartment
;
// private String mainVersion;
@Excel
(
name
=
"填表人"
,
orderNum
=
"51"
,
width
=
30
)
// @Excel(name = "节点名称", orderNum = "42", width=30)
private
String
fillingPerson
;
// private String nodeName;
@Excel
(
name
=
"升级改造时间"
,
orderNum
=
"52"
,
width
=
30
)
// @Excel(name = "硬件", orderNum = "43", width=30)
private
String
upgradingTime
;
// private String hardware;
@Excel
(
name
=
"升级改造主要内容"
,
orderNum
=
"53"
,
width
=
30
)
// @Excel(name = "系统软件及版本号", orderNum = "44", width=30)
private
String
mainContentsOfUpgrading
;
// private String softwareAndVersionNo;
@Excel
(
name
=
"变更日期"
,
orderNum
=
"54"
,
width
=
30
)
// @Excel(name = "部署地点", orderNum = "45", width=30)
private
String
dateOfChange
;
// private String locationOfDeployment;
@Excel
(
name
=
"对口部门"
,
orderNum
=
"55"
,
width
=
30
)
// @Excel(name = "灾备情况", orderNum = "46", width=30)
private
String
counterpartSector
;
// private String disasterPreparedness;
@Excel
(
name
=
"负责人"
,
orderNum
=
"56"
,
width
=
30
)
// @Excel(name = "第三方连接", orderNum = "47", width=30)
private
String
personInCharge
;
// private String thirdPartyConnection;
@Excel
(
name
=
"记录创建日期"
,
orderNum
=
"57"
,
width
=
30
)
// @Excel(name = "系统关联关系", orderNum = "48", width=30)
private
String
recordCreationDate
;
// private String systemAssociation;
@Excel
(
name
=
"记录更新日期"
,
orderNum
=
"58"
,
width
=
30
)
// @Excel(name = "升级改造时间", orderNum = "52", width=30)
private
String
recordUpdateDate
;
// private String upgradingTime;
@Excel
(
name
=
"上线日期"
,
orderNum
=
"59"
,
width
=
30
)
// @Excel(name = "升级改造主要内容", orderNum = "53", width=30)
private
String
onLineDate
;
// private String mainContentsOfUpgrading;
@Excel
(
name
=
"系统状态"
,
orderNum
=
"60"
,
width
=
30
)
// @Excel(name = "变更日期", orderNum = "54", width=30)
private
String
systemState
;
// private String dateOfChange;
// @Excel(name = "对口部门", orderNum = "55", width=30)
// private String counterpartSector;
// @Excel(name = "负责人", orderNum = "56", width=30)
// private String personInCharge;
// @Excel(name = "上线日期", orderNum = "59", width=30)
// private String onLineDate;
private
boolean
hasExtract
;
private
boolean
hasExtract
;
private
int
tableNum
;
private
int
tableNum
;
private
int
columnNum
;
private
int
columnNum
;
public
String
getPlate
()
{
return
plate
;
}
public
void
setPlate
(
String
plate
)
{
this
.
plate
=
plate
;
}
public
String
getContactPeople
()
{
return
contactPeople
;
}
public
void
setContactPeople
(
String
contactPeople
)
{
this
.
contactPeople
=
contactPeople
;
}
public
String
getSystemPeople
()
{
return
systemPeople
;
}
public
void
setSystemPeople
(
String
systemPeople
)
{
this
.
systemPeople
=
systemPeople
;
}
public
String
getOperationTime
()
{
return
operationTime
;
}
public
void
setOperationTime
(
String
operationTime
)
{
this
.
operationTime
=
operationTime
;
}
public
String
getOperationPeoplea
()
{
return
operationPeoplea
;
}
public
void
setOperationPeoplea
(
String
operationPeoplea
)
{
this
.
operationPeoplea
=
operationPeoplea
;
}
public
String
getOperationPeopleb
()
{
return
operationPeopleb
;
}
public
void
setOperationPeopleb
(
String
operationPeopleb
)
{
this
.
operationPeopleb
=
operationPeopleb
;
}
public
String
getSystemUsePerMonth
()
{
return
systemUsePerMonth
;
}
public
void
setSystemUsePerMonth
(
String
systemUsePerMonth
)
{
this
.
systemUsePerMonth
=
systemUsePerMonth
;
}
public
String
getUserLoginPerMonth
()
{
return
userLoginPerMonth
;
}
public
void
setUserLoginPerMonth
(
String
userLoginPerMonth
)
{
this
.
userLoginPerMonth
=
userLoginPerMonth
;
}
public
String
getNeedChangePerYear
()
{
return
needChangePerYear
;
}
public
void
setNeedChangePerYear
(
String
needChangePerYear
)
{
this
.
needChangePerYear
=
needChangePerYear
;
}
public
String
getWordOrderPerYear
()
{
return
wordOrderPerYear
;
}
public
void
setWordOrderPerYear
(
String
wordOrderPerYear
)
{
this
.
wordOrderPerYear
=
wordOrderPerYear
;
}
public
String
getProjectHumanInput
()
{
return
projectHumanInput
;
}
public
void
setProjectHumanInput
(
String
projectHumanInput
)
{
this
.
projectHumanInput
=
projectHumanInput
;
}
public
String
getProjectMoneyInput
()
{
return
projectMoneyInput
;
}
public
void
setProjectMoneyInput
(
String
projectMoneyInput
)
{
this
.
projectMoneyInput
=
projectMoneyInput
;
}
public
boolean
isHasExtract
()
{
public
boolean
isHasExtract
()
{
return
hasExtract
;
return
hasExtract
;
}
}
...
@@ -239,12 +338,6 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
...
@@ -239,12 +338,6 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
public
void
setBusinessDomain
(
String
businessDomain
)
{
public
void
setBusinessDomain
(
String
businessDomain
)
{
this
.
businessDomain
=
businessDomain
;
this
.
businessDomain
=
businessDomain
;
}
}
public
String
getBusinessFlow
()
{
return
businessFlow
;
}
public
void
setBusinessFlow
(
String
businessFlow
)
{
this
.
businessFlow
=
businessFlow
;
}
public
String
getCatalog
()
{
public
String
getCatalog
()
{
return
catalog
;
return
catalog
;
}
}
...
@@ -281,36 +374,18 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
...
@@ -281,36 +374,18 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
public
void
setContact
(
String
contact
)
{
public
void
setContact
(
String
contact
)
{
this
.
contact
=
contact
;
this
.
contact
=
contact
;
}
}
public
String
getBusinessSystemNo
()
{
return
businessSystemNo
;
}
public
void
setBusinessSystemNo
(
String
businessSystemNo
)
{
this
.
businessSystemNo
=
businessSystemNo
;
}
public
String
getDocuments
()
{
public
String
getDocuments
()
{
return
documents
;
return
documents
;
}
}
public
void
setDocuments
(
String
documents
)
{
public
void
setDocuments
(
String
documents
)
{
this
.
documents
=
documents
;
this
.
documents
=
documents
;
}
}
public
String
getSystemPersonInCharge
()
{
return
systemPersonInCharge
;
}
public
void
setSystemPersonInCharge
(
String
systemPersonInCharge
)
{
this
.
systemPersonInCharge
=
systemPersonInCharge
;
}
public
String
getPersonnelList
()
{
public
String
getPersonnelList
()
{
return
personnelList
;
return
personnelList
;
}
}
public
void
setPersonnelList
(
String
personnelList
)
{
public
void
setPersonnelList
(
String
personnelList
)
{
this
.
personnelList
=
personnelList
;
this
.
personnelList
=
personnelList
;
}
}
public
String
getUserList
()
{
return
userList
;
}
public
void
setUserList
(
String
userList
)
{
this
.
userList
=
userList
;
}
public
String
getSystemFunction
()
{
public
String
getSystemFunction
()
{
return
systemFunction
;
return
systemFunction
;
}
}
...
@@ -329,24 +404,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
...
@@ -329,24 +404,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
public
void
setCallRelationship
(
String
callRelationship
)
{
public
void
setCallRelationship
(
String
callRelationship
)
{
this
.
callRelationship
=
callRelationship
;
this
.
callRelationship
=
callRelationship
;
}
}
public
String
getCapabilityBlock
()
{
return
capabilityBlock
;
}
public
void
setCapabilityBlock
(
String
capabilityBlock
)
{
this
.
capabilityBlock
=
capabilityBlock
;
}
public
String
getMasterData
()
{
return
masterData
;
}
public
void
setMasterData
(
String
masterData
)
{
this
.
masterData
=
masterData
;
}
public
String
getFunctionClassification
()
{
return
functionClassification
;
}
public
void
setFunctionClassification
(
String
functionClassification
)
{
this
.
functionClassification
=
functionClassification
;
}
public
String
getImportantSystem
()
{
public
String
getImportantSystem
()
{
return
importantSystem
;
return
importantSystem
;
}
}
...
@@ -359,18 +417,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
...
@@ -359,18 +417,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
public
void
setOrgan
(
String
organ
)
{
public
void
setOrgan
(
String
organ
)
{
this
.
organ
=
organ
;
this
.
organ
=
organ
;
}
}
public
String
getServiceObject
()
{
return
serviceObject
;
}
public
void
setServiceObject
(
String
serviceObject
)
{
this
.
serviceObject
=
serviceObject
;
}
public
String
getBusinessDepartment
()
{
return
businessDepartment
;
}
public
void
setBusinessDepartment
(
String
businessDepartment
)
{
this
.
businessDepartment
=
businessDepartment
;
}
public
String
getConstructionDepartment
()
{
public
String
getConstructionDepartment
()
{
return
constructionDepartment
;
return
constructionDepartment
;
}
}
...
@@ -383,12 +430,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
...
@@ -383,12 +430,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
public
void
setOperationDepartment
(
String
operationDepartment
)
{
public
void
setOperationDepartment
(
String
operationDepartment
)
{
this
.
operationDepartment
=
operationDepartment
;
this
.
operationDepartment
=
operationDepartment
;
}
}
public
String
getServiceWindow
()
{
return
serviceWindow
;
}
public
void
setServiceWindow
(
String
serviceWindow
)
{
this
.
serviceWindow
=
serviceWindow
;
}
public
String
getSystemOnlineTime
()
{
public
String
getSystemOnlineTime
()
{
return
systemOnlineTime
;
return
systemOnlineTime
;
}
}
...
@@ -401,12 +443,6 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
...
@@ -401,12 +443,6 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
public
void
setSystemOfflineTime
(
String
systemOfflineTime
)
{
public
void
setSystemOfflineTime
(
String
systemOfflineTime
)
{
this
.
systemOfflineTime
=
systemOfflineTime
;
this
.
systemOfflineTime
=
systemOfflineTime
;
}
}
public
String
getMainVersion
()
{
return
mainVersion
;
}
public
void
setMainVersion
(
String
mainVersion
)
{
this
.
mainVersion
=
mainVersion
;
}
public
String
getSecurityProtectionLevel
()
{
public
String
getSecurityProtectionLevel
()
{
return
securityProtectionLevel
;
return
securityProtectionLevel
;
}
}
...
@@ -419,48 +455,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
...
@@ -419,48 +455,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
public
void
setMaintenanceClassification
(
String
maintenanceClassification
)
{
public
void
setMaintenanceClassification
(
String
maintenanceClassification
)
{
this
.
maintenanceClassification
=
maintenanceClassification
;
this
.
maintenanceClassification
=
maintenanceClassification
;
}
}
public
String
getNodeName
()
{
return
nodeName
;
}
public
void
setNodeName
(
String
nodeName
)
{
this
.
nodeName
=
nodeName
;
}
public
String
getHardware
()
{
return
hardware
;
}
public
void
setHardware
(
String
hardware
)
{
this
.
hardware
=
hardware
;
}
public
String
getSoftwareAndVersionNo
()
{
return
softwareAndVersionNo
;
}
public
void
setSoftwareAndVersionNo
(
String
softwareAndVersionNo
)
{
this
.
softwareAndVersionNo
=
softwareAndVersionNo
;
}
public
String
getLocationOfDeployment
()
{
return
locationOfDeployment
;
}
public
void
setLocationOfDeployment
(
String
locationOfDeployment
)
{
this
.
locationOfDeployment
=
locationOfDeployment
;
}
public
String
getDisasterPreparedness
()
{
return
disasterPreparedness
;
}
public
void
setDisasterPreparedness
(
String
disasterPreparedness
)
{
this
.
disasterPreparedness
=
disasterPreparedness
;
}
public
String
getThirdPartyConnection
()
{
return
thirdPartyConnection
;
}
public
void
setThirdPartyConnection
(
String
thirdPartyConnection
)
{
this
.
thirdPartyConnection
=
thirdPartyConnection
;
}
public
String
getSystemAssociation
()
{
return
systemAssociation
;
}
public
void
setSystemAssociation
(
String
systemAssociation
)
{
this
.
systemAssociation
=
systemAssociation
;
}
public
String
getOtherInstructions
()
{
public
String
getOtherInstructions
()
{
return
otherInstructions
;
return
otherInstructions
;
}
}
...
@@ -479,36 +474,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
...
@@ -479,36 +474,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
public
void
setFillingPerson
(
String
fillingPerson
)
{
public
void
setFillingPerson
(
String
fillingPerson
)
{
this
.
fillingPerson
=
fillingPerson
;
this
.
fillingPerson
=
fillingPerson
;
}
}
public
String
getUpgradingTime
()
{
return
upgradingTime
;
}
public
void
setUpgradingTime
(
String
upgradingTime
)
{
this
.
upgradingTime
=
upgradingTime
;
}
public
String
getMainContentsOfUpgrading
()
{
return
mainContentsOfUpgrading
;
}
public
void
setMainContentsOfUpgrading
(
String
mainContentsOfUpgrading
)
{
this
.
mainContentsOfUpgrading
=
mainContentsOfUpgrading
;
}
public
String
getDateOfChange
()
{
return
dateOfChange
;
}
public
void
setDateOfChange
(
String
dateOfChange
)
{
this
.
dateOfChange
=
dateOfChange
;
}
public
String
getCounterpartSector
()
{
return
counterpartSector
;
}
public
void
setCounterpartSector
(
String
counterpartSector
)
{
this
.
counterpartSector
=
counterpartSector
;
}
public
String
getPersonInCharge
()
{
return
personInCharge
;
}
public
void
setPersonInCharge
(
String
personInCharge
)
{
this
.
personInCharge
=
personInCharge
;
}
public
String
getRecordCreationDate
()
{
public
String
getRecordCreationDate
()
{
return
recordCreationDate
;
return
recordCreationDate
;
}
}
...
@@ -521,12 +487,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
...
@@ -521,12 +487,7 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
public
void
setRecordUpdateDate
(
String
recordUpdateDate
)
{
public
void
setRecordUpdateDate
(
String
recordUpdateDate
)
{
this
.
recordUpdateDate
=
recordUpdateDate
;
this
.
recordUpdateDate
=
recordUpdateDate
;
}
}
public
String
getOnLineDate
()
{
return
onLineDate
;
}
public
void
setOnLineDate
(
String
onLineDate
)
{
this
.
onLineDate
=
onLineDate
;
}
public
String
getSystemState
()
{
public
String
getSystemState
()
{
return
systemState
;
return
systemState
;
}
}
...
@@ -567,4 +528,148 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
...
@@ -567,4 +528,148 @@ public class SysTag implements Serializable, IExcelModel, IExcelDataModel{
// public String getBusinessFlow() {
// return businessFlow;
// }
// public void setBusinessFlow(String businessFlow) {
// this.businessFlow = businessFlow;
// }
// public String getBusinessSystemNo() {
// return businessSystemNo;
// }
// public void setBusinessSystemNo(String businessSystemNo) {
// this.businessSystemNo = businessSystemNo;
// }
// public String getSystemPersonInCharge() {
// return systemPersonInCharge;
// }
// public void setSystemPersonInCharge(String systemPersonInCharge) {
// this.systemPersonInCharge = systemPersonInCharge;
// }
// public String getUserList() {
// return userList;
// }
// public void setUserList(String userList) {
// this.userList = userList;
// }
// public String getCapabilityBlock() {
// return capabilityBlock;
// }
// public void setCapabilityBlock(String capabilityBlock) {
// this.capabilityBlock = capabilityBlock;
// }
// public String getMasterData() {
// return masterData;
// }
// public void setMasterData(String masterData) {
// this.masterData = masterData;
// }
// public String getFunctionClassification() {
// return functionClassification;
// }
// public void setFunctionClassification(String functionClassification) {
// this.functionClassification = functionClassification;
// }
// public String getServiceObject() {
// return serviceObject;
// }
// public void setServiceObject(String serviceObject) {
// this.serviceObject = serviceObject;
// }
// public String getBusinessDepartment() {
// return businessDepartment;
// }
// public void setBusinessDepartment(String businessDepartment) {
// this.businessDepartment = businessDepartment;
// }
// public String getServiceWindow() {
// return serviceWindow;
// }
// public void setServiceWindow(String serviceWindow) {
// this.serviceWindow = serviceWindow;
// }
// public String getMainVersion() {
// return mainVersion;
// }
// public void setMainVersion(String mainVersion) {
// this.mainVersion = mainVersion;
// }
// public String getNodeName() {
// return nodeName;
// }
// public void setNodeName(String nodeName) {
// this.nodeName = nodeName;
// }
// public String getHardware() {
// return hardware;
// }
// public void setHardware(String hardware) {
// this.hardware = hardware;
// }
// public String getSoftwareAndVersionNo() {
// return softwareAndVersionNo;
// }
// public void setSoftwareAndVersionNo(String softwareAndVersionNo) {
// this.softwareAndVersionNo = softwareAndVersionNo;
// }
// public String getLocationOfDeployment() {
// return locationOfDeployment;
// }
// public void setLocationOfDeployment(String locationOfDeployment) {
// this.locationOfDeployment = locationOfDeployment;
// }
// public String getDisasterPreparedness() {
// return disasterPreparedness;
// }
// public void setDisasterPreparedness(String disasterPreparedness) {
// this.disasterPreparedness = disasterPreparedness;
// }
// public String getThirdPartyConnection() {
// return thirdPartyConnection;
// }
// public void setThirdPartyConnection(String thirdPartyConnection) {
// this.thirdPartyConnection = thirdPartyConnection;
// }
// public String getSystemAssociation() {
// return systemAssociation;
// }
// public void setSystemAssociation(String systemAssociation) {
// this.systemAssociation = systemAssociation;
// }
// public String getUpgradingTime() {
// return upgradingTime;
// }
// public void setUpgradingTime(String upgradingTime) {
// this.upgradingTime = upgradingTime;
// }
// public String getMainContentsOfUpgrading() {
// return mainContentsOfUpgrading;
// }
// public void setMainContentsOfUpgrading(String mainContentsOfUpgrading) {
// this.mainContentsOfUpgrading = mainContentsOfUpgrading;
// }
// public String getDateOfChange() {
// return dateOfChange;
// }
// public void setDateOfChange(String dateOfChange) {
// this.dateOfChange = dateOfChange;
// }
// public String getCounterpartSector() {
// return counterpartSector;
// }
// public void setCounterpartSector(String counterpartSector) {
// this.counterpartSector = counterpartSector;
// }
// public String getPersonInCharge() {
// return personInCharge;
// }
// public void setPersonInCharge(String personInCharge) {
// this.personInCharge = personInCharge;
// }
// public String getOnLineDate() {
// return onLineDate;
// }
// public void setOnLineDate(String onLineDate) {
// this.onLineDate = onLineDate;
// }
}
}
src/main/java/com/keymobile/tagmanager/service/TagFileService.java
View file @
51c56113
...
@@ -662,25 +662,18 @@ public class TagFileService {
...
@@ -662,25 +662,18 @@ public class TagFileService {
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getSystemCode
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getSystemCode
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getSystemType
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getCnName
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getCnName
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getName
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getName
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getAlias
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getAlias
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getDevNo
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getSystemState
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getIntangibleNo
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getItemNo
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
BusinessDomain
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
SystemType
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
BusinessFlow
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
SystemIntroduction
());
contentCellIndex
++;
contentCellIndex
++;
//author:zhangkb time:2020-3-20 desc:将模板转换成中文
//author:zhangkb time:2020-3-20 desc:将模板转换成中文
String
catalog
=
sysTag
.
getCatalog
();
String
catalog
=
sysTag
.
getCatalog
();
if
(
StringUtils
.
isNotBlank
(
catalog
))
{
if
(
StringUtils
.
isNotBlank
(
catalog
))
{
...
@@ -692,124 +685,120 @@ public class TagFileService {
...
@@ -692,124 +685,120 @@ public class TagFileService {
}
}
}
}
row
.
createCell
(
contentCellIndex
).
setCellValue
(
catalog
);
row
.
createCell
(
contentCellIndex
).
setCellValue
(
catalog
);
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getPlate
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getDept
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getDept
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
SystemIntroduction
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
Ip
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getURL
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getURL
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getIp
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getContact
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getContact
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getBusinessSystemNo
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getContactPeople
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getDocuments
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
SystemPersonInCharge
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
Organ
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
PersonnelList
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
SystemPeople
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
UserList
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
OtherInstructions
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
SystemFunction
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
RecordCreationDate
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
ModuleDescription
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
RecordUpdateDate
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
CallRelationship
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
InformationApplicationDepartment
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
CapabilityBlock
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
FillingPerson
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
MasterData
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
BusinessDomain
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
FunctionClassification
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
ItemNo
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getI
mportantSystem
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getI
ntangibleNo
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
Organ
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
DevNo
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
ServiceObjec
t
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
ConstructionDepartmen
t
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
BusinessDepartmen
t
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
PersonnelLis
t
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
ConstructionDepartment
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
SystemFunction
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
OperationDepartment
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
ModuleDescription
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
ServiceWindow
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
CallRelationship
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getSystemOnlineTime
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getSystemOnlineTime
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
SystemOfflineTime
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
ProjectHumanInput
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
MainVersion
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
ProjectMoneyInput
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
SecurityProtectionLevel
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
Documents
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getMaintenanceClassification
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getMaintenanceClassification
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getNodeName
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getImportantSystem
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getHardware
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getSoftwareAndVersionNo
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getLocationOfDeployment
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getDisasterPreparedness
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getThirdPartyConnection
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getSystemAssociation
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getOtherInstructions
());
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getInformationApplicationDepartment
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
FillingPerson
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
SecurityProtectionLevel
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
UpgradingTime
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
OperationDepartment
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
MainContentsOfUpgrading
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
OperationTime
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
DateOfChange
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
OperationPeoplea
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
CounterpartSector
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
OperationPeopleb
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
PersonInCharge
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
SystemUsePerMonth
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
RecordCreationDate
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
UserLoginPerMonth
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
RecordUpdateDate
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
NeedChangePerYear
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
OnLineDate
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
get
WordOrderPerYear
());
contentCellIndex
++;
contentCellIndex
++;
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getSystem
Stat
e
());
row
.
createCell
(
contentCellIndex
).
setCellValue
(
sysTag
.
getSystem
OfflineTim
e
());
}
}
}
}
private
void
setTitleListAndRequiredCell
(
List
<
String
>
titleList
,
List
<
Integer
>
requiredCell
)
{
private
void
setTitleListAndRequiredCell
(
List
<
String
>
titleList
,
List
<
Integer
>
requiredCell
)
{
titleList
.
add
(
"序号"
);
titleList
.
add
(
"系统代码"
);
titleList
.
add
(
"系统类型"
);
titleList
.
add
(
"中文名称"
);
titleList
.
add
(
"序号"
);
titleList
.
add
(
"系统代码"
);
titleList
.
add
(
"中文名称"
);
titleList
.
add
(
"英文名称"
);
titleList
.
add
(
"曾用名/别名"
);
titleList
.
add
(
"开发支出资产主数据号"
);
titleList
.
add
(
"无形资产主数据号"
);
titleList
.
add
(
"英文名称"
);
titleList
.
add
(
"曾用名/别名"
);
titleList
.
add
(
"系统状态"
);
titleList
.
add
(
"系统类型"
);
titleList
.
add
(
"立项号"
);
titleList
.
add
(
"业务域"
);
titleList
.
add
(
"业务流"
);
titleList
.
add
(
"所属板块"
);
titleList
.
add
(
"系统简介"
);
titleList
.
add
(
"所属领域"
);
titleList
.
add
(
"所属板块"
);
titleList
.
add
(
"所属部门"
);
titleList
.
add
(
"所属部门"
);
titleList
.
add
(
"系统简介"
);
titleList
.
add
(
"网址"
);
titleList
.
add
(
"IP地址"
);
titleList
.
add
(
"IP地址"
);
titleList
.
add
(
"系统访问地址"
);
titleList
.
add
(
"用户代表"
);
titleList
.
add
(
"用户代表员工号"
);
titleList
.
add
(
"系统当前联系人"
);
titleList
.
add
(
"业务系统编号"
);
titleList
.
add
(
"项目过程文档"
);
titleList
.
add
(
"系统创建负责人"
);
titleList
.
add
(
"使用部门"
);
titleList
.
add
(
"系统授权人数"
);
titleList
.
add
(
"其他说明项"
);
titleList
.
add
(
"记录创建日期"
);
titleList
.
add
(
"研发人员名单"
);
titleList
.
add
(
"系统授权用户清单"
);
titleList
.
add
(
"系统功能点"
);
titleList
.
add
(
"系统功能模块描述"
);
titleList
.
add
(
"记录更新日期"
);
titleList
.
add
(
"业务牵头部门"
);
titleList
.
add
(
"业务牵头部门联系人"
);
titleList
.
add
(
"业务域"
);
titleList
.
add
(
"系统调用关系"
);
titleList
.
add
(
"对应的能力块"
);
titleList
.
add
(
"主要数据"
);
titleList
.
add
(
"系统功能分类"
);
titleList
.
add
(
"立项号"
);
titleList
.
add
(
"无形资产主数据号"
);
titleList
.
add
(
"开发支出资产主数据号"
);
titleList
.
add
(
"系统建设实施方"
);
titleList
.
add
(
"是否重要信息系统"
);
titleList
.
add
(
"使用机构"
);
titleList
.
add
(
"服务对象"
);
titleList
.
add
(
"业务负责部门"
);
titleList
.
add
(
"系统建设实施方项目经理"
);
titleList
.
add
(
"系统功能点"
);
titleList
.
add
(
"系统功能模块描述"
);
titleList
.
add
(
"调用接口名称"
);
titleList
.
add
(
"系统建设部门"
);
titleList
.
add
(
"系统运维部门"
);
titleList
.
add
(
"运行服务窗口"
);
titleList
.
add
(
"系统上线时间"
);
titleList
.
add
(
"系统上线时间"
);
titleList
.
add
(
"项目实际投入人力"
);
titleList
.
add
(
"项目实际投入金额"
);
titleList
.
add
(
"项目过程文档存放地址"
);
titleList
.
add
(
"系统下线时间"
);
titleList
.
add
(
"应用系统主版本"
);
titleList
.
add
(
"系统安全保护等级"
);
titleList
.
add
(
"系统维护分类"
);
titleList
.
add
(
"运维类型"
);
titleList
.
add
(
"系统定级"
);
titleList
.
add
(
"系统安全保护等级"
);
titleList
.
add
(
"系统运维实施方"
);
titleList
.
add
(
"节点名称"
);
titleList
.
add
(
"硬件"
);
titleList
.
add
(
"系统软件及版本号"
);
titleList
.
add
(
"部署地点"
);
titleList
.
add
(
"系统运维时间"
);
titleList
.
add
(
"运维负责人A"
);
titleList
.
add
(
"运维负责人B"
);
titleList
.
add
(
"月均系统使用人数"
);
titleList
.
add
(
"灾备情况"
);
titleList
.
add
(
"第三方连接"
);
titleList
.
add
(
"系统关联关系"
);
titleList
.
add
(
"其他说明项"
);
titleList
.
add
(
"月均用户登录次数"
);
titleList
.
add
(
"年均需求变更量"
);
titleList
.
add
(
"年均基础工单量"
);
titleList
.
add
(
"系统退役时间"
);
titleList
.
add
(
"信息申报部门"
);
titleList
.
add
(
"填表人"
);
titleList
.
add
(
"升级改造时间"
);
titleList
.
add
(
"升级改造主要内容"
);
titleList
.
add
(
"变更日期"
);
titleList
.
add
(
"对口部门"
);
titleList
.
add
(
"负责人"
);
titleList
.
add
(
"记录创建日期"
);
titleList
.
add
(
"记录更新日期"
);
titleList
.
add
(
"上线日期"
);
titleList
.
add
(
"系统状态"
);
// titleList.add("开发支出资产主数据号");titleList.add("无形资产主数据号");
// titleList.add("立项号");titleList.add("业务域");titleList.add("业务流");titleList.add("所属板块");
requiredCell
.
add
(
0
);
requiredCell
.
add
(
1
);
requiredCell
.
add
(
11
);
requiredCell
.
add
(
12
);
// titleList.add("所属部门");titleList.add("系统简介");titleList.add("网址");titleList.add("IP地址");
requiredCell
.
add
(
17
);
requiredCell
.
add
(
25
);
requiredCell
.
add
(
28
);
requiredCell
.
add
(
53
);
// titleList.add("系统当前联系人");titleList.add("业务系统编号");titleList.add("项目过程文档");titleList.add("系统创建负责人");
requiredCell
.
add
(
54
);
requiredCell
.
add
(
55
);
requiredCell
.
add
(
56
);
requiredCell
.
add
(
58
);
// titleList.add("研发人员名单");titleList.add("系统授权用户清单");titleList.add("系统功能点");titleList.add("系统功能模块描述");
// titleList.add("系统调用关系");titleList.add("对应的能力块");titleList.add("主要数据");titleList.add("系统功能分类");
// titleList.add("是否重要信息系统");titleList.add("使用机构");titleList.add("服务对象");titleList.add("业务负责部门");
// titleList.add("系统建设部门");titleList.add("系统运维部门");titleList.add("运行服务窗口");titleList.add("系统上线时间");
// titleList.add("系统下线时间");titleList.add("应用系统主版本");titleList.add("系统安全保护等级");titleList.add("系统维护分类");
// titleList.add("节点名称");titleList.add("硬件");titleList.add("系统软件及版本号");titleList.add("部署地点");
// titleList.add("灾备情况");titleList.add("第三方连接");titleList.add("系统关联关系");titleList.add("其他说明项");
// titleList.add("信息申报部门");titleList.add("填表人");titleList.add("升级改造时间");titleList.add("升级改造主要内容");
// titleList.add("变更日期");titleList.add("对口部门");titleList.add("负责人");titleList.add("记录创建日期");
// titleList.add("记录更新日期");titleList.add("上线日期");titleList.add("系统状态");
requiredCell
.
add
(
1
);
requiredCell
.
add
(
3
);
requiredCell
.
add
(
8
);
// requiredCell.add(0);requiredCell.add(1);requiredCell.add(11);requiredCell.add(12);
// requiredCell.add(17);requiredCell.add(25);requiredCell.add(28);requiredCell.add(53);
// requiredCell.add(54);requiredCell.add(55);requiredCell.add(56);requiredCell.add(58);
}
}
private
void
excelTitleStyle
(
Workbook
workbook
,
List
<
String
>
titleList
,
List
<
Integer
>
requiredCell
,
private
void
excelTitleStyle
(
Workbook
workbook
,
List
<
String
>
titleList
,
List
<
Integer
>
requiredCell
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment