Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gf_back
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tianchao
gf_back
Commits
1200c03f
Commit
1200c03f
authored
Jun 09, 2023
by
tianchao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.菜单保存
2.组织机构保存
parent
37824bee
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
209 additions
and
81 deletions
+209
-81
C02-system/pps-core-system/src/main/java/pps/core/system/entity/SysMenuEnt.java
...stem/src/main/java/pps/core/system/entity/SysMenuEnt.java
+5
-5
C02-system/pps-core-system/src/main/java/pps/core/system/entity/SysMenuView.java
...tem/src/main/java/pps/core/system/entity/SysMenuView.java
+9
-5
C02-system/pps-core-system/src/main/java/pps/core/system/service/SysDictionaryServiceImpl.java
...ava/pps/core/system/service/SysDictionaryServiceImpl.java
+1
-1
C02-system/pps-core-system/src/main/java/pps/core/system/service/SysMenuService.java
...src/main/java/pps/core/system/service/SysMenuService.java
+1
-0
C02-system/pps-core-system/src/main/java/pps/core/system/service/SysOrganizationService.java
.../java/pps/core/system/service/SysOrganizationService.java
+36
-36
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_menu/CreateSysMenuInput.java
...core/system/service/data/sys_menu/CreateSysMenuInput.java
+5
-5
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_menu/GetSysMenuInput.java
...ps/core/system/service/data/sys_menu/GetSysMenuInput.java
+5
-5
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_menu/QuerySysMenuOutputTree.java
.../system/service/data/sys_menu/QuerySysMenuOutputTree.java
+5
-5
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_menu/UpdateSysMenuInput.java
...core/system/service/data/sys_menu/UpdateSysMenuInput.java
+5
-5
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_organization/CreateSysOrganizationInput.java
...ice/data/sys_organization/CreateSysOrganizationInput.java
+32
-0
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_organization/UpdateSysOrganizationInput.java
...ice/data/sys_organization/UpdateSysOrganizationInput.java
+32
-0
C02-system/pps-core-system/src/main/resources/mybatis/mapper/pps/core/system/SysMenuViewMapper.xml
...rces/mybatis/mapper/pps/core/system/SysMenuViewMapper.xml
+11
-11
C09-base/pps-core-base/src/main/java/pps/core/base/service/BaseLineService.java
.../src/main/java/pps/core/base/service/BaseLineService.java
+32
-0
C09-base/pps-core-base/src/main/java/pps/core/base/service/data/base_line/QueryBaseLineOutput.java
...core/base/service/data/base_line/QueryBaseLineOutput.java
+30
-3
No files found.
C02-system/pps-core-system/src/main/java/pps/core/system/entity/SysMenuEnt.java
View file @
1200c03f
...
...
@@ -98,7 +98,7 @@ public class SysMenuEnt implements Serializable {
@XText
(
"描述"
)
@TableField
private
String
d
escribe
;
private
String
menuD
escribe
;
@XText
(
"应用场景(0:PC, 1:APP)"
)
@TableField
...
...
@@ -124,12 +124,12 @@ public class SysMenuEnt implements Serializable {
this
.
showChildren
=
showChildren
;
}
public
String
getDescribe
()
{
return
d
escribe
;
public
String
get
Menu
Describe
()
{
return
menuD
escribe
;
}
public
void
set
Describe
(
String
d
escribe
)
{
this
.
describe
=
d
escribe
;
public
void
set
MenuDescribe
(
String
menuD
escribe
)
{
this
.
menuDescribe
=
menuD
escribe
;
}
public
String
getMediaType
()
{
...
...
C02-system/pps-core-system/src/main/java/pps/core/system/entity/SysMenuView.java
View file @
1200c03f
...
...
@@ -101,7 +101,7 @@ public class SysMenuView implements Serializable {
@XText
(
"描述"
)
@TableField
private
String
d
escribe
;
private
String
menuD
escribe
;
@XText
(
"填报进展配置表id"
)
@Transient
...
...
@@ -156,12 +156,16 @@ public class SysMenuView implements Serializable {
this
.
showChildren
=
showChildren
;
}
public
String
getDescribe
()
{
return
describe
;
public
boolean
isShowChildren
()
{
return
showChildren
;
}
public
String
getMenuDescribe
()
{
return
menuDescribe
;
}
public
void
set
Describe
(
String
d
escribe
)
{
this
.
describe
=
d
escribe
;
public
void
set
MenuDescribe
(
String
menuD
escribe
)
{
this
.
menuDescribe
=
menuD
escribe
;
}
public
String
getMediaAllType
()
{
...
...
C02-system/pps-core-system/src/main/java/pps/core/system/service/SysDictionaryServiceImpl.java
View file @
1200c03f
...
...
@@ -136,7 +136,7 @@ public class SysDictionaryServiceImpl implements SystemDictionaryService {
}
}
}
if
(
ObjectUtils
.
isNotEmpty
(
sysDictionaryEnt
.
getIsOrg
())
&&
sysDictionaryEnt
.
getIsOrg
()
==
1
){
if
(
sysDictionaryEnt
!=
null
&&
ObjectUtils
.
isNotEmpty
(
sysDictionaryEnt
.
getIsOrg
())
&&
sysDictionaryEnt
.
getIsOrg
()
==
1
){
//查询当前登录人的组织机构层级路径
QueryWrapper
<
SysOrganizationRelEnt
>
queryOrgRel
=
new
QueryWrapper
<>();
queryOrgRel
.
lambda
().
eq
(
SysOrganizationRelEnt:
:
getOuId
,
input
.
getOuId
())
...
...
C02-system/pps-core-system/src/main/java/pps/core/system/service/SysMenuService.java
View file @
1200c03f
...
...
@@ -599,6 +599,7 @@ public class SysMenuService {
entity
.
setCreateByName
(
session
.
getUserName
());
}
entity
.
setMediaType
(
"ALL"
);
entity
.
setShowChildren
(
false
);
mapper
.
insert
(
entity
);
...
...
C02-system/pps-core-system/src/main/java/pps/core/system/service/SysOrganizationService.java
View file @
1200c03f
...
...
@@ -961,7 +961,7 @@ public class SysOrganizationService {
insertSysOrganizationRel
(
context
,
date
,
uuid
,
input
.
getParentOuId
(),
input
.
getSort
(),
session
);
//新增组织机构属性表
insertSysOrganizationProperty
(
context
,
date
,
uuid
,
input
.
getMediaType
()
,
session
);
insertSysOrganizationProperty
(
context
,
date
,
input
.
getId
(),
"GAS"
,
session
);
//更新缓存中组织机构树
selectSysOrganizationTree
(
context
,
new
GetSysOrganizationInput
());
...
...
@@ -1083,41 +1083,41 @@ public class SysOrganizationService {
}
propertyMapper
.
updateById
(
sysOrganizationPropertyEnt
);
});
if
(
XStringUtils
.
isNotEmpty
(
input
.
getMediaType
())){
String
[]
split
=
input
.
getMediaType
().
split
(
","
);
StringBuilder
builder
=
new
StringBuilder
();
for
(
String
mediaType
:
split
)
{
//用来判断库中是否存在选中的介质类型
int
record
=
0
;
for
(
SysOrganizationPropertyEnt
propertyEntity
:
propertyEntitys
)
{
//如果页面和库中的介质类型相等的话改为有效
if
(
mediaType
.
equals
(
propertyEntity
.
getPropertyValue
())){
record
+=
1
;
//介质类型
//propertyEntity.setPropertyValue(input.getMediumType());
SimpleDateFormat
sdf
=
new
SimpleDateFormat
(
"yyyy-MM-dd"
);
String
datetime
=
"9999-12-31"
;
try
{
propertyEntity
.
setEndTime
(
sdf
.
parse
(
datetime
));
}
catch
(
ParseException
e
)
{
e
.
printStackTrace
();
}
propertyMapper
.
updateById
(
propertyEntity
);
}
}
if
(
record
==
0
){
builder
.
append
(
","
);
builder
.
append
(
mediaType
);
}
}
if
(
builder
.
length
()>
0
){
//新增组织机构属性表
String
mediaType
=
builder
.
substring
(
1
);
insertSysOrganizationProperty
(
context
,
date
,
input
.
getId
(),
mediaType
,
session
);
}
}
insertSysOrganizationProperty
(
context
,
date
,
input
.
getId
(),
"GAS"
,
session
);
//
if (XStringUtils.isNotEmpty(input.getMediaType())){
//
String[] split = input.getMediaType().split(",");
//
StringBuilder builder = new StringBuilder();
//
for (String mediaType : split) {
//
//用来判断库中是否存在选中的介质类型
//
int record=0;
//
for (SysOrganizationPropertyEnt propertyEntity : propertyEntitys) {
//
//如果页面和库中的介质类型相等的话改为有效
//
if (mediaType.equals(propertyEntity.getPropertyValue())){
//
record+=1;
//
//介质类型
//
//propertyEntity.setPropertyValue(input.getMediumType());
//
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
//
String datetime="9999-12-31";
//
try {
//
propertyEntity.setEndTime(sdf.parse(datetime));
//
} catch (ParseException e) {
//
e.printStackTrace();
//
}
//
propertyMapper.updateById(propertyEntity);
//
}
//
}
//
if (record ==0){
//
builder.append(",");
//
builder.append(mediaType);
//
//
}
//
}
//
if (builder.length()>0){
//
//新增组织机构属性表
//
String mediaType = builder.substring(1);
//
//
}
//
}
}
catch
(
Exception
e
){
throw
new
XServiceException
(
e
);
...
...
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_menu/CreateSysMenuInput.java
View file @
1200c03f
...
...
@@ -64,7 +64,7 @@ public class CreateSysMenuInput {
private
String
level
;
@XText
(
"描述"
)
private
String
d
escribe
;
private
String
menuD
escribe
;
@XText
(
"是否展开"
)
private
boolean
showChildren
;
...
...
@@ -106,12 +106,12 @@ public class CreateSysMenuInput {
this
.
showChildren
=
showChildren
;
}
public
String
getDescribe
()
{
return
d
escribe
;
public
String
get
Menu
Describe
()
{
return
menuD
escribe
;
}
public
void
set
Describe
(
String
d
escribe
)
{
this
.
describe
=
d
escribe
;
public
void
set
MenuDescribe
(
String
menuD
escribe
)
{
this
.
menuDescribe
=
menuD
escribe
;
}
public
String
getMediaType
()
{
...
...
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_menu/GetSysMenuInput.java
View file @
1200c03f
...
...
@@ -62,7 +62,7 @@ public class GetSysMenuInput {
@XText
(
"介质类型(字典)"
)
@TableField
private
String
me
diaTyp
e
;
private
String
me
nuDescrib
e
;
@XText
(
"菜单级别"
)
@TableField
...
...
@@ -109,12 +109,12 @@ public class GetSysMenuInput {
this
.
oilGasType
=
oilGasType
;
}
public
String
getMe
diaTyp
e
()
{
return
me
diaTyp
e
;
public
String
getMe
nuDescrib
e
()
{
return
me
nuDescrib
e
;
}
public
void
setMe
diaType
(
String
mediaTyp
e
)
{
this
.
me
diaType
=
mediaTyp
e
;
public
void
setMe
nuDescribe
(
String
menuDescrib
e
)
{
this
.
me
nuDescribe
=
menuDescrib
e
;
}
public
String
getLevel
()
{
...
...
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_menu/QuerySysMenuOutputTree.java
View file @
1200c03f
...
...
@@ -53,7 +53,7 @@ public class QuerySysMenuOutputTree {
@XText
(
"菜单级别"
)
private
String
level
;
@XText
(
"描述"
)
private
String
d
escribe
;
private
String
menuD
escribe
;
@XText
(
"是否展开"
)
...
...
@@ -97,12 +97,12 @@ public class QuerySysMenuOutputTree {
this
.
showChildren
=
showChildren
;
}
public
String
getDescribe
()
{
return
d
escribe
;
public
String
get
Menu
Describe
()
{
return
menuD
escribe
;
}
public
void
set
Describe
(
String
d
escribe
)
{
this
.
describe
=
d
escribe
;
public
void
set
MenuDescribe
(
String
menuD
escribe
)
{
this
.
menuDescribe
=
menuD
escribe
;
}
public
String
getBusinessTypeName
()
{
...
...
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_menu/UpdateSysMenuInput.java
View file @
1200c03f
...
...
@@ -68,7 +68,7 @@ public class UpdateSysMenuInput {
private
String
level
;
@XText
(
"描述"
)
private
String
d
escribe
;
private
String
menuD
escribe
;
@XText
(
"是否展开"
)
...
...
@@ -111,12 +111,12 @@ public class UpdateSysMenuInput {
this
.
showChildren
=
showChildren
;
}
public
String
getDescribe
()
{
return
d
escribe
;
public
String
get
Menu
Describe
()
{
return
menuD
escribe
;
}
public
void
set
Describe
(
String
d
escribe
)
{
this
.
describe
=
d
escribe
;
public
void
set
MenuDescribe
(
String
menuD
escribe
)
{
this
.
menuDescribe
=
menuD
escribe
;
}
public
String
getMediaType
()
{
...
...
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_organization/CreateSysOrganizationInput.java
View file @
1200c03f
...
...
@@ -69,6 +69,15 @@ public class CreateSysOrganizationInput {
@XText
(
"介质类型"
)
private
String
mediaType
;
@XText
(
"经度"
)
private
BigDecimal
longitude
;
@XText
(
"纬度"
)
private
BigDecimal
latitude
;
@XText
(
"高程"
)
private
BigDecimal
elevation
;
public
String
getMediaType
()
{
return
mediaType
;
}
...
...
@@ -237,4 +246,27 @@ public class CreateSysOrganizationInput {
this
.
province
=
value
;
}
public
BigDecimal
getLongitude
()
{
return
longitude
;
}
public
void
setLongitude
(
BigDecimal
longitude
)
{
this
.
longitude
=
longitude
;
}
public
BigDecimal
getLatitude
()
{
return
latitude
;
}
public
void
setLatitude
(
BigDecimal
latitude
)
{
this
.
latitude
=
latitude
;
}
public
BigDecimal
getElevation
()
{
return
elevation
;
}
public
void
setElevation
(
BigDecimal
elevation
)
{
this
.
elevation
=
elevation
;
}
}
C02-system/pps-core-system/src/main/java/pps/core/system/service/data/sys_organization/UpdateSysOrganizationInput.java
View file @
1200c03f
...
...
@@ -68,6 +68,15 @@ public class UpdateSysOrganizationInput {
@XText
(
"介质类型"
)
private
String
mediaType
;
@XText
(
"经度"
)
private
BigDecimal
longitude
;
@XText
(
"纬度"
)
private
BigDecimal
latitude
;
@XText
(
"高程"
)
private
BigDecimal
elevation
;
public
String
getParentOuId
()
{
return
parentOuId
;
}
...
...
@@ -236,4 +245,27 @@ public class UpdateSysOrganizationInput {
this
.
province
=
value
;
}
public
BigDecimal
getLongitude
()
{
return
longitude
;
}
public
void
setLongitude
(
BigDecimal
longitude
)
{
this
.
longitude
=
longitude
;
}
public
BigDecimal
getLatitude
()
{
return
latitude
;
}
public
void
setLatitude
(
BigDecimal
latitude
)
{
this
.
latitude
=
latitude
;
}
public
BigDecimal
getElevation
()
{
return
elevation
;
}
public
void
setElevation
(
BigDecimal
elevation
)
{
this
.
elevation
=
elevation
;
}
}
C02-system/pps-core-system/src/main/resources/mybatis/mapper/pps/core/system/SysMenuViewMapper.xml
View file @
1200c03f
...
...
@@ -21,7 +21,7 @@
<result
column=
"menu_type"
property=
"menuType"
jdbcType=
"VARCHAR"
/>
<result
column=
"media_type"
property=
"mediaType"
jdbcType=
"VARCHAR"
/>
<result
column=
"level"
property=
"level"
jdbcType=
"VARCHAR"
/>
<result
column=
"
describe"
property=
"d
escribe"
jdbcType=
"VARCHAR"
/>
<result
column=
"
menu_describe"
property=
"menuD
escribe"
jdbcType=
"VARCHAR"
/>
<result
column=
"show_children"
property=
"showChildren"
jdbcType=
"BOOLEAN"
/>
<result
column=
"menu_pattern"
property=
"menuPattern"
jdbcType=
"VARCHAR"
/>
<result
column=
"fill_conf_id"
property=
"fillConfId"
jdbcType=
"VARCHAR"
/>
...
...
@@ -50,7 +50,7 @@
menu_type,
media_type,
`level`,
`describe`
,
menu_describe
,
show_children,
apply_scene,
menu_icon
...
...
@@ -121,7 +121,7 @@
sort,
url,
apply_scene,
`describe`
,
menu_describe
,
menu_icon
from sys_menu sm
where apply_scene=#{applyScene} and sm.id in (
...
...
@@ -150,7 +150,7 @@
a.sort,
a.url,
a.apply_scene,
a.
`describe`
,
a.
menu_describe
,
a.menu_icon
from temps inner join sys_menu a on temps.parent_menu_id = a.id
)
...
...
@@ -161,7 +161,7 @@
select 'GAS' as media_type
</select>
<select
id=
"selectParentMenus"
parameterType=
"pps.core.system.entity.SysMenuView"
resultMap=
"BaseResultMap"
>
select
id,menu_name ,
parent_menu_id from
select
t.id,t.menu_name ,t.
parent_menu_id from
(
with RECURSIVE temps as
(
...
...
@@ -173,7 +173,7 @@
inner join sys_menu a on temps.parent_menu_id = a.id
)
select temps.* from temps
)
where
id !=#{id}
)
t where t.
id !=#{id}
</select>
<select
id=
"selectMenuForThreeLevelList"
parameterType=
"pps.core.system.entity.SysMenuView"
resultType=
"pps.core.system.entity.SysMenuView"
>
...
...
@@ -197,7 +197,7 @@
menu_type,
media_type,
`level`,
`describe`
,
menu_describe
,
show_children,
menu_icon
from sys_menu
...
...
@@ -208,11 +208,11 @@
with RECURSIVE temps as
(
select sm.id ,sm.menu_name ,sm.parent_menu_id ,sm.sort ,sm.url ,sm.media_type ,sm.menu_type ,sm.menu_pattern,sm.
`describe`
,sm.menu_icon
select sm.id ,sm.menu_name ,sm.parent_menu_id ,sm.sort ,sm.url ,sm.media_type ,sm.menu_type ,sm.menu_pattern,sm.
menu_describe
,sm.menu_icon
from sys_menu sm
where menu_name like concat('%',#{menuName},'%') and apply_scene=#{applyScene}
union
select sm.id ,sm.menu_name ,sm.parent_menu_id ,sm.sort ,sm.url ,sm.media_type ,sm.menu_type ,sm.menu_pattern,sm.
`describe`
,sm.menu_icon
select sm.id ,sm.menu_name ,sm.parent_menu_id ,sm.sort ,sm.url ,sm.media_type ,sm.menu_type ,sm.menu_pattern,sm.
menu_describe
,sm.menu_icon
from temps inner join sys_menu sm on temps.parent_menu_id = sm.id
)
select temps.* from temps
...
...
@@ -259,7 +259,7 @@
media_type,
sort,
url,
`describe`
,
menu_describe
,
menu_icon
from sys_menu sm
where sm.id in (
...
...
@@ -280,7 +280,7 @@
a.media_type,
a.sort,
a.url,
a.
`describe`
,
a.
menu_describe
,
a.menu_icon
from temps inner join sys_menu a on temps.parent_menu_id = a.id
)
...
...
C09-base/pps-core-base/src/main/java/pps/core/base/service/BaseLineService.java
View file @
1200c03f
...
...
@@ -3,6 +3,10 @@ package pps.core.base.service;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
com.github.pagehelper.PageInfo
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.util.CollectionUtils
;
import
pps.cloud.system.service.SystemDictionaryService
;
import
pps.cloud.system.service.data.QuerySysDictionaryViewInput
;
import
pps.cloud.system.service.data.QuerySysDictionaryViewOutput
;
import
pps.core.base.entity.BaseLineAllView
;
import
pps.core.base.entity.BaseLineEnt
;
import
pps.core.base.entity.BaseLineView
;
...
...
@@ -87,6 +91,12 @@ public class BaseLineService {
BaseLineMapper
mapper
=
context
.
getBean
(
BaseLineMapper
.
class
);
List
<
BaseLineEnt
>
list
=
mapper
.
selectList
(
new
QueryWrapper
<>());
List
<
QueryBaseLineOutput
>
outputs
=
XCopyUtils
.
copyNewList
(
list
,
QueryBaseLineOutput
.
class
);
List
<
QuerySysDictionaryViewOutput
>
gridTypeList
=
getDictList
(
context
,
"grid_type"
);
List
<
QuerySysDictionaryViewOutput
>
lineTypeList
=
getDictList
(
context
,
"line_type"
);
outputs
.
stream
().
forEach
(
item
->{
item
.
setGridTypeName
(
getDictName
(
item
.
getGridType
()
+
""
,
gridTypeList
));
item
.
setLineTypeName
(
getDictName
(
item
.
getGridType
()
+
""
,
lineTypeList
));
});
return
XListResult
.
success
(
outputs
);
}
...
...
@@ -119,4 +129,26 @@ public class BaseLineService {
return
XMapperHelper
.
query
(
mapper
,
input
,
BaseLineEnt
.
class
,
QueryBaseLineOutput
.
class
);
}
public
List
<
QuerySysDictionaryViewOutput
>
getDictList
(
XContext
context
,
String
alias
){
SystemDictionaryService
dictionaryService
=
context
.
getBean
(
SystemDictionaryService
.
class
);
QuerySysDictionaryViewInput
dictInput
=
new
QuerySysDictionaryViewInput
();
dictInput
.
setAlias
(
alias
);
dictInput
.
setPage
(
1
);
dictInput
.
setLimit
(
999
);
XListResult
<
QuerySysDictionaryViewOutput
>
dictPageResult
=
dictionaryService
.
queryChildSysDictionarysByParentAlias
(
context
,
dictInput
);
dictPageResult
.
throwIfFail
();
return
dictPageResult
.
getResult
();
}
public
String
getDictName
(
String
dictKey
,
List
<
QuerySysDictionaryViewOutput
>
dictList
){
if
(
StringUtils
.
isBlank
(
dictKey
)
||
CollectionUtils
.
isEmpty
(
dictList
)){
return
" "
;
}
for
(
QuerySysDictionaryViewOutput
dict
:
dictList
)
{
if
(
dict
.
getDicKey
().
equals
(
dictKey
)){
return
dict
.
getDicName
();
}
}
return
""
;
}
}
C09-base/pps-core-base/src/main/java/pps/core/base/service/data/base_line/QueryBaseLineOutput.java
View file @
1200c03f
...
...
@@ -19,13 +19,17 @@ public class QueryBaseLineOutput extends XPageInput {
private
String
lineName
;
@XText
(
"线路类型"
)
private
Integer
lineType
;
@XText
(
"电网类型"
)
@XText
(
"线路类型"
)
private
String
lineTypeName
;
@XText
(
"电网类型"
)
private
Integer
gridType
;
@XText
(
"电网类型"
)
private
String
gridTypeName
;
@XText
(
"装机容量"
)
private
BigDecimal
installCapacity
;
...
...
@@ -39,7 +43,6 @@ public class QueryBaseLineOutput extends XPageInput {
private
BigDecimal
arrayToward
;
@XText
(
"组织id"
)
private
String
ouId
;
@XText
(
"油田ouid"
)
...
...
@@ -234,4 +237,28 @@ public class QueryBaseLineOutput extends XPageInput {
public
void
setModifyTime
(
Date
modifyTime
)
{
this
.
modifyTime
=
modifyTime
;
}
public
String
getLineTypeName
()
{
return
lineTypeName
;
}
public
void
setLineTypeName
(
String
lineTypeName
)
{
this
.
lineTypeName
=
lineTypeName
;
}
public
String
getGridTypeName
()
{
return
gridTypeName
;
}
public
void
setGridTypeName
(
String
gridTypeName
)
{
this
.
gridTypeName
=
gridTypeName
;
}
public
String
getpLineName
()
{
return
pLineName
;
}
public
void
setpLineName
(
String
pLineName
)
{
this
.
pLineName
=
pLineName
;
}
}
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