Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
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
1b3cc8b0
Commit
1b3cc8b0
authored
Feb 03, 2026
by
lixuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 新增字段
parent
adb9c3dc
Pipeline
#146810
failed with stages
in 1 second
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
BusinessEntityInfo.java
...ava/com/ruoyi/system/domain/house/BusinessEntityInfo.java
+1
-1
BusinessEntityDto.java
...a/com/ruoyi/system/domain/house/vo/BusinessEntityDto.java
+1
-1
HouseResourceExport.java
...com/ruoyi/system/domain/house/vo/HouseResourceExport.java
+3
-3
HouseResourcePage.java
...a/com/ruoyi/system/domain/house/vo/HouseResourcePage.java
+1
-1
BusinessEntityInfoMapper.xml
.../main/resources/mapper/house/BusinessEntityInfoMapper.xml
+1
-1
No files found.
ruoyi-system/src/main/java/com/ruoyi/system/domain/house/BusinessEntityInfo.java
View file @
1b3cc8b0
...
...
@@ -28,7 +28,7 @@ public class BusinessEntityInfo implements Serializable {
private
String
industryClassification
;
private
Boolean
gs
;
private
Integer
gs
;
private
Boolean
registrationPlaceFlag
;
...
...
ruoyi-system/src/main/java/com/ruoyi/system/domain/house/vo/BusinessEntityDto.java
View file @
1b3cc8b0
...
...
@@ -31,7 +31,7 @@ public class BusinessEntityDto {
private
String
industryClassification
;
private
Boolean
gs
;
private
Integer
gs
;
private
Boolean
registrationPlaceFlag
;
...
...
ruoyi-system/src/main/java/com/ruoyi/system/domain/house/vo/HouseResourceExport.java
View file @
1b3cc8b0
...
...
@@ -73,13 +73,13 @@ public class HouseResourceExport {
@Excel
(
name
=
"行业分类"
)
private
String
industryClassification
;
@Excel
(
name
=
"是否规上企业"
,
readConverterExp
=
"
false=否,true=是
"
)
private
Boolean
gs
;
@Excel
(
name
=
"是否规上企业"
,
readConverterExp
=
"
0=未入库,1=已入库,2=拟入库
"
)
private
Integer
gs
;
@Excel
(
name
=
"备注"
)
private
String
remark
;
@Excel
(
name
=
"
有无欠薪
"
,
readConverterExp
=
"false=无,true=有"
)
@Excel
(
name
=
"
是否有预付式或投资形支付行为
"
,
readConverterExp
=
"false=无,true=有"
)
private
Boolean
backPayFlag
;
@Excel
(
name
=
"涉稳风险"
)
...
...
ruoyi-system/src/main/java/com/ruoyi/system/domain/house/vo/HouseResourcePage.java
View file @
1b3cc8b0
...
...
@@ -108,7 +108,7 @@ public class HouseResourcePage {
private
String
industryClassification
;
private
Boolean
gs
;
private
Integer
gs
;
private
BigDecimal
dayPrice
;
...
...
ruoyi-system/src/main/resources/mapper/house/BusinessEntityInfoMapper.xml
View file @
1b3cc8b0
...
...
@@ -12,7 +12,7 @@
<result
column=
"worker_number"
property=
"workerNumber"
jdbcType=
"INTEGER"
/>
<result
column=
"registered_address"
property=
"registeredAddress"
jdbcType=
"VARCHAR"
/>
<result
column=
"industry_classification"
property=
"industryClassification"
jdbcType=
"VARCHAR"
/>
<result
property=
"gs"
column=
"gs"
jdbcType=
"
BIT
"
/>
<result
property=
"gs"
column=
"gs"
jdbcType=
"
INTEGER
"
/>
<result
property=
"registrationPlaceFlag"
column=
"registration_place_flag"
jdbcType=
"INTEGER"
/>
<result
property=
"associationBusinessEntityFlag"
column=
"association_business_entity_flag"
jdbcType=
"INTEGER"
/>
<result
property=
"backPayFlag"
column=
"back_pay_flag"
jdbcType=
"INTEGER"
/>
...
...
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