Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mall.oytour.com
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
黄奎
mall.oytour.com
Commits
1d5123a1
Commit
1d5123a1
authored
Dec 11, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
ff96e55b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
13 deletions
+12
-13
RB_BuildingApplyFor.cs
Mall.Model/Entity/TradePavilion/RB_BuildingApplyFor.cs
+2
-2
RB_EnterpriseServicesApply.cs
....Model/Entity/TradePavilion/RB_EnterpriseServicesApply.cs
+2
-2
AppletTradeController.cs
...WebApi/Controllers/TradePavilion/AppletTradeController.cs
+8
-9
No files found.
Mall.Model/Entity/TradePavilion/RB_BuildingApplyFor.cs
View file @
1d5123a1
...
...
@@ -59,12 +59,12 @@ namespace Mall.Model.Entity.TradePavilion
/// <summary>
/// 楼层数
/// </summary>
public
int
FloorNum
{
get
;
set
;
}
public
string
FloorNum
{
get
;
set
;
}
/// <summary>
/// 电梯数
/// </summary>
public
int
ElevatorNum
{
get
;
set
;
}
public
string
ElevatorNum
{
get
;
set
;
}
/// <summary>
/// 层高
...
...
Mall.Model/Entity/TradePavilion/RB_EnterpriseServicesApply.cs
View file @
1d5123a1
...
...
@@ -74,12 +74,12 @@ namespace Mall.Model.Entity.TradePavilion
/// <summary>
/// 意向楼层
/// </summary>
public
int
IntentionalFloor
{
get
;
set
;
}
public
string
IntentionalFloor
{
get
;
set
;
}
/// <summary>
/// 电梯数
/// </summary>
public
int
ElevatorNum
{
get
;
set
;
}
public
string
ElevatorNum
{
get
;
set
;
}
/// <summary>
/// 物业费(元/㎡)
...
...
Mall.WebApi/Controllers/TradePavilion/AppletTradeController.cs
View file @
1d5123a1
...
...
@@ -3054,8 +3054,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
CategoryName
=
extModel
?.
CategoryName
??
""
,
Areas
=
extModel
?.
Areas
??
""
,
BuildingNum
=
extModel
?.
BuildingNum
??
""
,
FloorNum
=
extModel
?.
FloorNum
??
0
,
ElevatorNum
=
extModel
?.
ElevatorNum
??
0
,
FloorNum
=
extModel
?.
FloorNum
??
""
,
ElevatorNum
=
extModel
?.
ElevatorNum
??
""
,
FloorHeight
=
extModel
?.
FloorHeight
??
0
,
Developers
=
extModel
?.
Developers
??
""
,
PropertyComp
=
extModel
?.
PropertyComp
??
""
,
...
...
@@ -3238,8 +3238,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
Renovation
=
extModel
?.
Renovation
??
""
,
Payment
=
extModel
?.
Payment
??
""
,
HandoverDate
=
extModel
?.
HandoverDate
??
""
,
IntentionalFloor
=
extModel
?.
IntentionalFloor
??
0
,
ElevatorNum
=
extModel
?.
ElevatorNum
??
0
,
IntentionalFloor
=
extModel
?.
IntentionalFloor
??
""
,
ElevatorNum
=
extModel
?.
ElevatorNum
??
""
,
PropertyFee
=
extModel
?.
PropertyFee
??
0
,
RentFee
=
extModel
?.
RentFee
??
0
,
BannerList
=
extModel
?.
BannerList
??
new
List
<
string
>(),
...
...
@@ -3481,8 +3481,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
Renovation
=
parms
.
GetStringValue
(
"Renovation"
),
Payment
=
parms
.
GetStringValue
(
"Payment"
),
HandoverDate
=
parms
.
GetStringValue
(
"HandoverDate"
),
IntentionalFloor
=
parms
.
Get
Int
(
"IntentionalFloor"
),
ElevatorNum
=
parms
.
Get
Int
(
"ElevatorNum"
),
IntentionalFloor
=
parms
.
Get
StringValue
(
"IntentionalFloor"
),
ElevatorNum
=
parms
.
Get
StringValue
(
"ElevatorNum"
),
PropertyFee
=
parms
.
GetDecimal
(
"PropertyFee"
),
RentFee
=
parms
.
GetDecimal
(
"RentFee"
),
ContactName
=
parms
.
GetStringValue
(
"ContactName"
),
...
...
@@ -3729,8 +3729,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
CategoryId
=
parms
.
GetInt
(
"CategoryId"
),
Areas
=
parms
.
GetStringValue
(
"Areas"
),
BuildingNum
=
parms
.
GetStringValue
(
"BuildingNum"
),
FloorNum
=
parms
.
Get
Int
(
"FloorNum"
),
ElevatorNum
=
parms
.
Get
Int
(
"ElevatorNum"
),
FloorNum
=
parms
.
Get
StringValue
(
"FloorNum"
),
ElevatorNum
=
parms
.
Get
StringValue
(
"ElevatorNum"
),
FloorHeight
=
parms
.
GetDecimal
(
"FloorHeight"
),
Developers
=
parms
.
GetStringValue
(
"Developers"
),
PropertyComp
=
parms
.
GetStringValue
(
"PropertyComp"
),
...
...
@@ -4000,7 +4000,6 @@ namespace Mall.WebApi.Controllers.TradePavilion
JObject
parms
=
JObject
.
Parse
(
RequestParm
.
msg
.
ToString
());
var
query
=
new
RB_Collect_Extend
()
{
Type
=
parms
.
GetInt
(
"Type"
),
UserId
=
userInfo
.
UserId
};
...
...
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