Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
岳巧源
/
jd_data_process
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
b55f357c
authored
Oct 14, 2024
by
岳巧源
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
add py
parent
71b0cc1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
16 deletions
lie_shop_picture.sql
update_jd_attr.py
lie_shop_picture.sql
View file @
b55f357c
...
@@ -3,8 +3,8 @@ create table lie_shop_picture (
...
@@ -3,8 +3,8 @@ create table lie_shop_picture (
spu_id
bigint
(
19
)
unsigned
default
0
not
null
comment
'SPUID'
,
spu_id
bigint
(
19
)
unsigned
default
0
not
null
comment
'SPUID'
,
sku_id
bigint
(
19
)
unsigned
default
0
not
null
comment
'SKUID'
,
sku_id
bigint
(
19
)
unsigned
default
0
not
null
comment
'SKUID'
,
class_id
smallint
unsigned
default
0
not
null
comment
'猎芯分类id'
,
class_id
smallint
unsigned
default
0
not
null
comment
'猎芯分类id'
,
lie_pic_url
varchar
(
100
)
default
''
not
null
comment
'猎芯图片链接'
,
lie_pic_url
varchar
(
255
)
default
''
not
null
comment
'猎芯图片链接'
,
jd_pic_url
varchar
(
100
)
default
''
not
null
comment
'京东图片链接'
,
jd_pic_url
varchar
(
255
)
default
''
not
null
comment
'京东图片链接'
,
shop_type
smallint
(
1
)
unsigned
default
0
not
null
comment
'店铺类型 1-pop 2-vc'
,
shop_type
smallint
(
1
)
unsigned
default
0
not
null
comment
'店铺类型 1-pop 2-vc'
,
state
smallint
(
1
)
unsigned
default
0
not
null
comment
'图片状态 图片状态,0-未审核,1-审核通过(默认),2-审核不通过,3-图片空间逻辑删除,4-图片服务器逻辑删除,5-图片服务器物理删除,6-图片空间永久删除'
,
state
smallint
(
1
)
unsigned
default
0
not
null
comment
'图片状态 图片状态,0-未审核,1-审核通过(默认),2-审核不通过,3-图片空间逻辑删除,4-图片服务器逻辑删除,5-图片服务器物理删除,6-图片空间永久删除'
,
create_time
int
(
10
)
unsigned
default
0
not
null
comment
'创建时间'
,
create_time
int
(
10
)
unsigned
default
0
not
null
comment
'创建时间'
,
...
...
update_jd_attr.py
View file @
b55f357c
...
@@ -27,7 +27,18 @@ config_dev = {
...
@@ -27,7 +27,18 @@ config_dev = {
}
}
config_prod
=
{
config_prod
=
{
"mysql"
:
{
"host"
:
"bigdata2.ichunt.db"
,
"port"
:
3306
,
"user"
:
"DsbuUx"
,
"password"
:
"sfj09JjsfpQx0"
,
"database"
:
"liexin_data_distribution"
},
"redis"
:
{
"host"
:
"172.18.137.38"
,
"port"
:
6379
,
"password"
:
"icDb29mLy2s"
}
}
}
...
@@ -205,17 +216,17 @@ def update_ext_attr_by_class_ids(conf: dict):
...
@@ -205,17 +216,17 @@ def update_ext_attr_by_class_ids(conf: dict):
print
(
"暂时未兼容此种类型的拓展属性 input_type: "
+
str
(
input_type
))
print
(
"暂时未兼容此种类型的拓展属性 input_type: "
+
str
(
input_type
))
# 检查此分类的此拓展属性在 db 中是否已存在,未存在则 insert, 存在则 update
# 检查此分类的此拓展属性在 db 中是否已存在,未存在则 insert, 存在则 update
check_sql
=
"select id from lie_shop_attr where class_id =
%
s and attr_id =
%
s"
#
check_sql = "select id from lie_shop_attr where class_id = %s and attr_id = %s"
cursor
.
execute
(
query
=
check_sql
,
args
=
(
class_id
,
attr_id
,))
#
cursor.execute(query=check_sql, args=(class_id, attr_id,))
db_result
=
cursor
.
fetchall
()
#
db_result = cursor.fetchall()
if
len
(
db_result
)
==
0
:
#
if len(db_result) == 0:
# 不存在时
#
# 不存在时
insert_sql
=
"insert into lie_shop_attr (class_id, attr_id, attr_name, unit, enum_value, input_type, is_required, status, platform, create_time) values (
%
s,
%
s,
%
s,
%
s,
%
s,
%
s,
%
s,
%
s,
%
s,
%
s)"
#
insert_sql = "insert into lie_shop_attr (class_id, attr_id, attr_name, unit, enum_value, input_type, is_required, status, platform, create_time) values (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s)"
cursor
.
execute
(
query
=
insert_sql
,
args
=
(
class_id
,
attr_id
,
attr_name
,
unit
,
enum_value
,
input_type
,
is_required
,
status
,
platform
,
create_time
,))
#
cursor.execute(query=insert_sql, args=(class_id, attr_id, attr_name, unit, enum_value, input_type, is_required, status, platform, create_time,))
db
.
commit
()
#
db.commit()
print
(
insert_sql
%
(
class_id
,
attr_id
,
attr_name
,
unit
,
enum_value
,
input_type
,
is_required
,
status
,
platform
,
create_time
))
#
print(insert_sql % (class_id, attr_id, attr_name, unit, enum_value, input_type, is_required, status, platform, create_time))
else
:
#
else:
update_sql
=
""
#
update_sql = ""
insert_ext_attr_to_redis
(
class_attr_mapping
,
conf
)
insert_ext_attr_to_redis
(
class_attr_mapping
,
conf
)
...
@@ -264,4 +275,4 @@ if __name__ == '__main__':
...
@@ -264,4 +275,4 @@ if __name__ == '__main__':
elif
environment
==
"prod"
:
elif
environment
==
"prod"
:
config
=
config_prod
config
=
config_prod
# update_jd_attr_by_class(conf=config)
# update_jd_attr_by_class(conf=config)
# update_ext_attr_by_class_ids(conf=config)
update_ext_attr_by_class_ids
(
conf
=
config
)
\ No newline at end of file
\ No newline at end of file
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