Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yichengstreet-be
Project
Project
Details
Activity
Releases
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
yichengstreet
yichengstreet-be
Commits
630a5628
Commit
630a5628
authored
Jun 25, 2025
by
lixuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 房源
parent
582b5ac0
Pipeline
#145125
failed with stages
in 6 minutes and 22 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
24 deletions
+37
-24
HouseResourceExport.java
...com/ruoyi/system/domain/house/vo/HouseResourceExport.java
+16
-20
HouseResourceMapper.xml
...m/src/main/resources/mapper/house/HouseResourceMapper.xml
+21
-4
No files found.
ruoyi-system/src/main/java/com/ruoyi/system/domain/house/vo/HouseResourceExport.java
View file @
630a5628
...
...
@@ -21,39 +21,35 @@ public class HouseResourceExport {
@Excel
(
name
=
"类型"
,
readConverterExp
=
"1=楼宇,4=道路,5=街区,6=综合体,7=市场"
)
private
int
type
;
@Excel
(
name
=
"经营主体性质"
)
private
String
nature
;
@Excel
(
name
=
"经营主体名称"
)
private
List
<
String
>
businessEntityInfoNames
;
@Excel
(
name
=
"门面号"
)
private
String
houseNumber
;
private
int
houseResourceType
;
@Excel
(
name
=
"房源类型"
)
private
String
houseResourceTypeText
;
@Excel
(
name
=
"具体位置"
)
private
String
address
;
@Excel
(
name
=
"
房源
面积"
)
@Excel
(
name
=
"
场所
面积"
)
private
BigDecimal
houseArea
;
private
int
houseResourceAttribute
;
@Excel
(
name
=
"房源属性"
)
@Excel
(
name
=
"产权类型"
)
private
String
houseResourceAttributeText
;
@Excel
(
name
=
"
产权人联系方式
"
)
private
String
houseResource
EquityTel
;
@Excel
(
name
=
"
经营(办公)场所状态
"
)
private
String
houseResource
TypeText
;
@Excel
(
name
=
"产权人归属"
)
private
String
ownership
;
@Excel
(
name
=
"
地址
"
)
private
String
address
;
@Excel
(
name
=
"
产权人联系方式
"
)
private
String
houseResourceEquityTel
;
@Excel
(
name
=
"负责人"
)
private
String
principal
;
@Excel
(
name
=
"租金"
)
private
BigDecimal
unitPrice
;
@Excel
(
name
=
"经营主体性质"
,
readConverterExp
=
"1=个体经营户,2=法人单位(企业),3=分公司,4=非经营主体"
)
private
String
nature
;
@Excel
(
name
=
"经营主体名称"
)
private
List
<
String
>
businessEntityInfoNames
;
@Excel
(
name
=
"负责人联系方式"
)
private
String
principalTel
;
...
...
ruoyi-system/src/main/resources/mapper/house/HouseResourceMapper.xml
View file @
630a5628
...
...
@@ -273,15 +273,32 @@
</select>
<select
id=
"exportList"
resultType=
"com.ruoyi.system.domain.house.vo.HouseResourcePage"
>
SELECT
t1.two,
t1.three,
t2.wg_name AS wgName4,
t1.*,
t3.*,
t4.*
t1.type,
t1.house_number,
t1.address,
t1.house_area,
t1.house_resource_attribute,
t1.house_resource_type,
t1.ownership,
t1.house_resource_equity_tel,
t1.unit_price,
t3.nature,
t3.NAME,
t3.principal_tel,
t3.business,
t3.worker_number,
t3.registration_place_flag,
t3.registered_address,
t3.industry_classification,
t3.gs,
t1.remark
FROM
house_resource t1
LEFT JOIN grid_region t2 ON t2.wg_code = t1.four
LEFT JOIN business_entity_info t3 ON t1.id = t3.house_resource_id
LEFT JOIN business_entity_sell t4 ON t4.business_entity_info_id = t3.id
<where>
<if
test=
"query.wgType != null"
>
and t1.type = #{query.wgType}
...
...
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