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
809c697c
Commit
809c697c
authored
Mar 04, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增字段
parent
d6fb6d7f
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
4 deletions
+17
-4
RB_Goods.cs
Mall.Model/Entity/Product/RB_Goods.cs
+7
-2
RB_Miniprogram_Template_Extend.cs
.../Extend/MarketingCenter/RB_Miniprogram_Template_Extend.cs
+5
-0
ProductModule.cs
Mall.Module.Product/ProductModule.cs
+3
-1
ProductController.cs
Mall.WebApi/Controllers/Product/ProductController.cs
+2
-1
No files found.
Mall.Model/Entity/Product/RB_Goods.cs
View file @
809c697c
...
...
@@ -591,13 +591,18 @@ namespace Mall.Model.Entity.Product
public
string
GoodsCountry
{
get
;
set
;
}
/// <summary>
///
海关代码/关税率
///
商品地址
/// </summary>
public
string
FatCode
{
get
;
set
;
}
/// <summary>
///
官网
///
商品简介
/// </summary>
public
string
GoodsUrl
{
get
;
set
;
}
/// <summary>
/// 商品Logo
/// </summary>
public
string
goodsLogo
{
get
;
set
;
}
}
}
Mall.Model/Extend/MarketingCenter/RB_Miniprogram_Template_Extend.cs
View file @
809c697c
...
...
@@ -340,6 +340,11 @@ namespace Mall.Model.Extend.MarketingCenter
/// 模板数据
/// </summary>
public
object
TemplateData
{
get
;
set
;
}
/// <summary>
/// 是否显示
/// </summary>
public
int
isShow
{
get
;
set
;
}
}
...
...
Mall.Module.Product/ProductModule.cs
View file @
809c697c
...
...
@@ -2585,7 +2585,8 @@ namespace Mall.Module.Product
video_type
=
model
.
VideoType
,
goods_country
=
model
.
GoodsCountry
,
fatcode
=
model
.
FatCode
,
goodsurl
=
model
.
GoodsUrl
goodsurl
=
model
.
GoodsUrl
,
goodsLogo
=
model
.
goodsLogo
,
},
delivery
=
""
};
...
...
@@ -7052,6 +7053,7 @@ namespace Mall.Module.Product
{
nameof
(
RB_Goods
.
GoodsCountry
),
demodel
.
GoodsCountry
},
{
nameof
(
RB_Goods
.
FatCode
),
demodel
.
FatCode
},
{
nameof
(
RB_Goods
.
GoodsUrl
),
demodel
.
GoodsUrl
},
{
nameof
(
RB_Goods
.
goodsLogo
),
demodel
.
goodsLogo
},
};
if
(
goodsModel
.
IsProcurement
==
1
)
{
...
...
Mall.WebApi/Controllers/Product/ProductController.cs
View file @
809c697c
...
...
@@ -1781,7 +1781,8 @@ namespace Mall.WebApi.Controllers.MallBase
model
?.
IntegralCommentType
,
model
?.
GoodsCountry
,
model
?.
FatCode
,
model
?.
GoodsUrl
model
?.
GoodsUrl
,
model
?.
goodsLogo
,
};
}
return
ApiResult
.
Success
(
""
,
obj
);
...
...
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