Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
jd_goods
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bigdata
jd_goods
Commits
e1866026
Commit
e1866026
authored
Jun 11, 2021
by
杨林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
京东商品样例类
parent
26fb901c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
0 deletions
+52
-0
src/main/scala/model/Item.scala
src/main/scala/model/Item.scala
+52
-0
No files found.
src/main/scala/model/Item.scala
0 → 100644
View file @
e1866026
package
model
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
/**
* @ClassName: Item
* @Description: TODO
* @Create by: LinYoung
* @Date: 2021/1/22 14:32
*/
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
case
class
Item
(
platform
:
Int
,
//商品平台
item_id
:
String
,
//商品id
item_name
:
String
,
//商品名称
item_desc
:
String
,
//商品描述
brand_name
:
String
,
//品牌名称
item_url
:
String
,
//商品链接
item_pic_url
:
String
,
//商品图片链接
item_volume
:
String
,
//商品销量
origin_category
:
String
,
//商品原始类目
origin_category_id
:
String
,
//商品原始类目id
new_category
:
String
,
//商品类目
new_category_id
:
String
,
//商品类目id
price
:
Double
,
//商品原价
coupon_price
:
Double
,
//商品券后价
commission_rate
:
Double
,
//佣金比例
coupon_commission
:
Double
,
//券后佣金
commission_start_time
:
Long
,
//计划开始时间
commission_end_time
:
Long
,
//计划结束时间
coupon_amount
:
Double
,
//优惠券额度
coupon_tips
:
String
,
//优惠券满减信息
coupon_count
:
Int
,
//优惠券数量
coupon_remain
:
Int
,
//优惠券剩余量
coupon_start_time
:
Long
,
//优惠券开始时间
coupon_end_time
:
Long
,
//优惠券结束时间
coupon_link
:
String
,
//优惠券链接
item_label
:
String
,
//商品标签
shop_id
:
String
,
//店铺id
shop_name
:
String
,
//店铺名称
shop_level
:
Double
,
//店铺等级
description_level
:
Double
,
//描述分
express_level
:
Double
,
//物流分
server_level
:
Double
,
//服务分
shop_type
:
Int
,
//店铺类型
createTime
:
Long
//创建时间
)
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