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
53a2e7e3
Commit
53a2e7e3
authored
Dec 11, 2024
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
75d5bc33
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
0 deletions
+22
-0
RB_Brand_Enterprise.cs
Mall.Model/Entity/TradePavilion/RB_Brand_Enterprise.cs
+10
-0
BuildingCarrierModule.cs
Mall.Module.TradePavilion/BuildingCarrierModule.cs
+2
-0
TradeController.cs
Mall.WebApi/Controllers/TradePavilion/TradeController.cs
+10
-0
No files found.
Mall.Model/Entity/TradePavilion/RB_Brand_Enterprise.cs
View file @
53a2e7e3
...
...
@@ -255,5 +255,15 @@ namespace Mall.Model.Entity.TradePavilion
/// 配套需求
/// </summary>
public
string
Complementary
{
get
;
set
;
}
/// <summary>
/// 联系人
/// </summary>
public
string
ContactName
{
get
;
set
;
}
/// <summary>
/// 联系电话
/// </summary>
public
string
ContactPhone
{
get
;
set
;
}
}
}
Mall.Module.TradePavilion/BuildingCarrierModule.cs
View file @
53a2e7e3
...
...
@@ -315,6 +315,8 @@ namespace Mall.Module.TradePavilion
{
nameof
(
RB_Brand_Enterprise_Extend
.
PropertyDemand
),
model
.
PropertyDemand
},
{
nameof
(
RB_Brand_Enterprise_Extend
.
Cooperation
),
model
.
Cooperation
},
{
nameof
(
RB_Brand_Enterprise_Extend
.
Complementary
),
model
.
Complementary
},
{
nameof
(
RB_Brand_Enterprise_Extend
.
ContactName
),
model
.
ContactName
},
{
nameof
(
RB_Brand_Enterprise_Extend
.
ContactPhone
),
model
.
ContactPhone
},
};
flag
=
brand_EnterpriseRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Brand_Enterprise_Extend
.
ID
),
model
.
ID
));
}
...
...
Mall.WebApi/Controllers/TradePavilion/TradeController.cs
View file @
53a2e7e3
...
...
@@ -3516,6 +3516,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
SupportingFacilities
=
parms
.
GetStringValue
(
"SupportingFacilities"
),
ManagementCompany
=
parms
.
GetStringValue
(
"ManagementCompany"
),
BrandDemand
=
parms
.
GetStringValue
(
"BrandDemand"
),
CarrierSize
=
parms
.
GetDecimal
(
"CarrierSize"
),
};
List
<
string
>
bannerList
=
new
List
<
string
>();
string
BannerStr
=
parms
.
GetStringValue
(
"Banner"
);
...
...
@@ -3933,6 +3935,10 @@ namespace Mall.WebApi.Controllers.TradePavilion
item
.
CustomerType
,
item
.
UserId
,
item
.
AuthUserName
,
item
.
AreaRequirement
,
item
.
EndAreaRequirement
,
item
.
ContactName
,
item
.
ContactPhone
,
CreateDate
=
Common
.
ConvertHelper
.
FormatDate
(
item
.
CreateDate
),
});
}
...
...
@@ -3969,6 +3975,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
PropertyDemand
=
parms
.
GetStringValue
(
"PropertyDemand"
),
Cooperation
=
parms
.
GetStringValue
(
"Cooperation"
),
Complementary
=
parms
.
GetStringValue
(
"Complementary"
),
ContactName
=
parms
.
GetStringValue
(
"ContactName"
),
ContactPhone
=
parms
.
GetStringValue
(
"ContactPhone"
),
};
List
<
string
>
BannerList
=
new
List
<
string
>();
string
bannerListStr
=
parms
.
GetStringValue
(
"BannerList"
);
...
...
@@ -4048,6 +4056,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
PropertyDemand
=
extModel
?.
PropertyDemand
??
""
,
Cooperation
=
extModel
?.
Cooperation
??
""
,
Complementary
=
extModel
?.
Complementary
??
""
,
ContactName
=
extModel
?.
ContactName
??
""
,
ContactPhone
=
extModel
?.
ContactPhone
??
""
,
BannerList
,
};
return
ApiResult
.
Success
(
data
:
dataObj
);
...
...
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