from django.db import models
# Create your models here.
# APP端统计
class App_statistic(models.Model):
dt = models.DateField()
city = models.CharField(max_length=20)
new_count = models.IntegerField()
active_uconut = models.IntegerField()
# web端统计
class web_statistic(models.Model):
dt = models.DateField()
city = models.CharField(max_length=20)
new_count = models.IntegerField()
active_uconut = models.IntegerField()
# 核心比率
class core_rate(models.Model):
dt = models.DateField()
zhuce_rate = models.DecimalField(max_digits=4,decimal_places=2)
tiaochu_rate = models.DecimalField(max_digits=4,decimal_places=2)
average_atime = models.DecimalField(max_digits=4,decimal_places=2)
average_depth = models.DecimalField(max_digits=5,decimal_places=3) #数据库好像写错了
shop_cart_cancel = models.DecimalField(max_digits=4,decimal_places=2)
# vip 订单流水和订单数
class vip_order(models.Model):
dt = models.DateField()
level1_gmv = models.IntegerField()
level2_gmv = models.IntegerField()
level3_gmv = models.IntegerField()
level4_gmv = models.IntegerField()
level1_count = models.IntegerField()
level2_count = models.IntegerField()
level3_count = models.IntegerField()
level4_count = models.IntegerField()
# 全局漏斗
class loudou(models.Model):
dt = models.DateField()
soushuo = models.IntegerField()
liulan = models.IntegerField()
add_shopping_cart = models.IntegerField()
sub_order = models.IntegerField()
pay_order = models.IntegerField()
zhuanhua_total = models.DecimalField(max_digits=4,decimal_places=2)
zhuanhua1 = models.DecimalField(max_digits=4, decimal_places=2)
zhuanhua2 = models.DecimalField(max_digits=4, decimal_places=2)
zhuanhua3 = models.DecimalField(max_digits=4, decimal_places=2)
zhuanhua4 = models.DecimalField(max_digits=4, decimal_places=2)
# 不同运营位转化
class opreation_zhuanhua(models.Model):
dt = models.DateField()
b_liu_zhuan = models.DecimalField(max_digits=4,decimal_places=2)
b_add_zhuan = models.DecimalField(max_digits=4,decimal_places=2)
b_order_zhuan = models.DecimalField(max_digits=4,decimal_places=2)
b_pay_zhuan = models.DecimalField(max_digits=4,decimal_places=2)
c_liu_zhuan = models.DecimalField(max_digits=4,decimal_places=2)
c_add_zhuan = models.DecimalField(max_digits=4,decimal_places=2)
c_order_zhuan = models.DecimalField(max_digits=4,decimal_places=2)
c_pay_zhuan = models.DecimalField(max_digits=4,decimal_places=2)
r_liu_zhuan = models.DecimalField(max_digits=4, decimal_places=2)
r_add_zhuan = models.DecimalField(max_digits=4, decimal_places=2)
r_order_zhuan = models.DecimalField(max_digits=4, decimal_places=2)
r_pay_zhuan = models.DecimalField(max_digits=4, decimal_places=2)
# top品类和订单
class top_statistic(models.Model):
dt = models.DateField()
top1_category = models.CharField(max_length=20)
top2_category = models.CharField(max_length=20)
top3_category = models.CharField(max_length=20)
top4_category = models.CharField(max_length=20)
top5_category = models.CharField(max_length=20)
top6_product = models.CharField(max_length=20)
top1_rate = models.DecimalField(max_digits=4, decimal_places=2)
top2_rate = models.DecimalField(max_digits=4, decimal_places=2)
top3_rate = models.DecimalField(max_digits=4, decimal_places=2)
top4_rate = models.DecimalField(max_digits=4, decimal_places=2)
top5_rate = models.DecimalField(max_digits=4, decimal_places=2)
top6_rate = models.DecimalField(max_digits=4, decimal_places=2)
# 商品浏览来源占比
# 最上方的横幅广告、精选就是可以滑动的那个、推荐是像用户推荐点击的
class shoping_from(models.Model):
dt = models.DateField() # 这个字段没有 添加到前面
recommend = models.DecimalField(max_digits=4,decimal_places=2)
banner = models.DecimalField(max_digits=4,decimal_places=2)
search = models.DecimalField(max_digits=4, decimal_places=2)
well_chosen = models.DecimalField(max_digits=4, decimal_places=2)
other = models.DecimalField(max_digits=4, decimal_places=2)
# 运营位概览
class operation(models.Model):
dt = models.DateField() # 这个字段没有 添加到前面
banner_yinyliu = models.DecimalField(max_digits=8,decimal_places=1)
chosen_yinyliu = models.DecimalField(max_digits=8, decimal_places=1)
recommend_yinyliu = models.DecimalField(max_digits=8, decimal_places=1)
banner_forder = models.DecimalField(max_digits=8, decimal_places=1)
chosen_forder = models.DecimalField(max_digits=8, decimal_places=1)
recommend_forder = models.DecimalField(max_digits=8, decimal_places=1)
banner_fgmv = models.DecimalField(max_digits=8, decimal_places=1)
chosen_fgmv = models.DecimalField(max_digits=8, decimal_places=1)
recommend_fgmv = models.DecimalField(max_digits=8, decimal_places=1)
banner_click = models.DecimalField(max_digits=8, decimal_places=1)
chosen_click = models.DecimalField(max_digits=8, decimal_places=1)
recommend_click = models.DecimalField(max_digits=8, decimal_places=1)
banner_fugou = models.DecimalField(max_digits=8, decimal_places=1)
chosen_fugou = models.DecimalField(max_digits=8, decimal_places=1)
recommend_fugou = models.DecimalField(max_digits=8, decimal_places=1)
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
基于Hadoop和Django开发实现的用户画像系统源代码+文档说明(高分完整毕业设计项目)含有代码注释,新手也可看懂,个人手打98分项目,导师非常认可的高分项目,毕业设计、期末大作业和课程设计高分必看,下载下来,简单部署,就可以使用。该项目可以直接作为毕设、期末大作业使用,代码都在里面,系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值,项目都经过严格调试,确保可以运行! 基于Hadoop和Django开发实现的用户画像系统源代码+文档说明(高分完整毕业设计项目)基于Hadoop和Django开发实现的用户画像系统源代码+文档说明(高分完整毕业设计项目)基于Hadoop和Django开发实现的用户画像系统源代码+文档说明(高分完整毕业设计项目)基于Hadoop和Django开发实现的用户画像系统源代码+文档说明(高分完整毕业设计项目)基于Hadoop和Django开发实现的用户画像系统源代码+文档说明(高分完整毕业设计项目)基于Hadoop和Django开发实现的用户画像系统源代码+文档说明(高分完整毕业设计项目)基于Hadoop和Django开发实现的用
资源推荐
资源详情
资源评论
收起资源包目录
基于Hadoop和Django开发实现的用户画像系统源代码+文档说明(高分完整毕业设计项目) (419个子文件)
_trial_marker 0B
summernote-bs3.css 143KB
bootstrap.min.css 118KB
bootstrap.min14ed.css 118KB
style.min.css 97KB
style.min862f.css 97KB
animate.min.css 46KB
datepicker3.css 33KB
font-awesome.min93e3.css 26KB
ambiance.css 25KB
style.min.css 25KB
sweetalert.css 18KB
simditor.css 17KB
ui.jqgridffe4.css 16KB
jasny-bootstrap.min.css 14KB
chosen.css 12KB
dropzone.css 11KB
layer.css 11KB
layim.css 11KB
fullcalendar.css 11KB
summernote.css 10KB
plyr.css 10KB
codemirror.css 7KB
blueimp-gallery.min.css 7KB
awesome-bootstrap-checkbox.css 7KB
toastr.min.css 7KB
laydate.css 6KB
webuploader-demo.min.css 6KB
laydate.css 6KB
jquery.steps.css 6KB
footable.core.css 5KB
jquery.fancybox.css 5KB
dataTables.bootstrap.css 5KB
bootstrap-table.min.css 4KB
clockpicker.css 4KB
basic.css 4KB
style.css 4KB
laydate.css 3KB
bootstrap-colorpicker.min.css 3KB
laydate.css 3KB
laydate.css 3KB
laydate.css 3KB
laydate.css 3KB
laydate.css 3KB
cropper.min.css 3KB
ion.rangeSlider.css 3KB
jquery.nouislider.css 3KB
layer.ext.css 3KB
bootstrap-markdown.min.css 3KB
jquery.gritter.css 3KB
ion.rangeSlider.skinFlat.css 2KB
login.min.css 1KB
custom.css 1KB
bootstrap-treeview.css 1KB
fullcalendar.print.css 660B
switchery.css 611B
webuploader.css 515B
morris-0.4.3.min.css 443B
Thumbs.db 5KB
Thumbs.db 5KB
Thumbs.db 3KB
Thumbs.db 3KB
fontawesome-webfontd41d.eot 67KB
fontawesome-webfont93e3.eot 67KB
glyphicons-halflings-regular.eot 20KB
glyphicons-halflings-regulard41d.eot 20KB
footable.eot 5KB
footabled41d.eot 5KB
GET 8KB
fancybox_loading@2x.gif 14KB
fancybox_loading.gif 6KB
loading.gif 4KB
loading-upload.gif 2KB
loading.gif 166B
blank.gif 43B
ie-spacer.gif 43B
fontawesome.html 136KB
glyphicons.html 77KB
form_advanced.html 57KB
index-2.html 51KB
table_data_tables.html 50KB
clients.html 50KB
index_v148b2.html 40KB
index_v1.html 40KB
table_foo_table.html 40KB
index.html 39KB
form_basic.html 35KB
buttons.html 35KB
table_bootstrap.html 30KB
index_v3.html 30KB
social_feed.html 27KB
widgets.html 27KB
ABtest.html 26KB
index_v5.html 25KB
typography.html 25KB
yonghu360.html 25KB
projects.html 24KB
index_v4.html 24KB
grid_options.html 24KB
yunying.html 23KB
共 419 条
- 1
- 2
- 3
- 4
- 5
资源评论
王二空间
- 粉丝: 6500
- 资源: 1990
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 5G建设和AI技术推动下,中证5G通信ETF的投资价值探讨
- Python项目之淘宝模拟登录.zip
- 课程设计项目:python+QT实现的小型编译器.zip
- (源码)基于AVR ATmega644的智能卡AES解密系统.zip
- (源码)基于C++插件框架的计算与打印系统.zip
- (源码)基于Spring Boot和Vue的苍穹外卖管理系统.zip
- (源码)基于wxWidgets库的QMiniIDE游戏开发环境管理系统.zip
- 通过C++实现原型模式(Prototype Pattern).rar
- 学习记录111111111111111111111111
- 通过java实现原型模式(Prototype Pattern).rar
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功