All Projects → Swenson1992 → Dailyreport

Swenson1992 / Dailyreport

日报管理系统V1版本,适合小团队的每日汇报记录

Programming Languages

javascript
184084 projects - #8 most used programming language
coffeescript
4710 projects

Projects that are alternatives of or similar to Dailyreport

Xbin Store
模仿国内知名B2C网站,实现的一个分布式B2C商城 使用Spring Boot 自动配置 Dubbox / MVC / MyBatis / Druid / Solr / Redis 等。使用Spring Cloud版本请查看
Stars: ✭ 2,140 (+1020.42%)
Mutual labels:  redis
Ms
🔥MS 是一个前后分离的分布式 spring cloud 框架(全家桶),这里有统一认证,统一网关等等功能,是一个非常简洁的微服务脚手架
Stars: ✭ 186 (-2.62%)
Mutual labels:  redis
Blog Service
blog service @nestjs
Stars: ✭ 188 (-1.57%)
Mutual labels:  redis
Weibospider
This is a sina weibo spider built by scrapy [微博爬虫/持续维护]
Stars: ✭ 2,408 (+1160.73%)
Mutual labels:  redis
Destiny.core.flow
Destiny.Core.Flow是基于.Net Core,VUE前后分离,开发的一个开源Admin管理框架目前有以下模块:菜单管理、用户管理、角色管理、用户角色、角色权限等功能。
Stars: ✭ 184 (-3.66%)
Mutual labels:  redis
Grbac
权限管理服务平台, 利用shiro权限管理设计思想, 支持单用户多角色,比RBAC的资源管理更细粒度化
Stars: ✭ 186 (-2.62%)
Mutual labels:  redis
Ts App
Boilerplate project for a TypeScript API (Express, tsoa) + UI (React/TSX)
Stars: ✭ 182 (-4.71%)
Mutual labels:  redis
Webredismanager
WebRedis Manager is a simple management to implement Redis using SAEA. RedisSocket, SAEA.MVC and running speed quickly.WebRedisManager是使用的SAEA.RedisSocket、SAEA.MVC等实现Redis的简便管理功能,轻松运行~
Stars: ✭ 189 (-1.05%)
Mutual labels:  redis
Hospital
医院预约挂号微信小程序(Spring Boot、Vue、Uni-app)
Stars: ✭ 182 (-4.71%)
Mutual labels:  redis
Springcloud Miaosha
一个基于spring cloud Greenwich的简单秒杀电子商城项目,适合新人阅读。A simple spring cloud based seckill shopping mall project, suitable for young people to read. It can be used as a paper material for academic defense.
Stars: ✭ 187 (-2.09%)
Mutual labels:  redis
Mage2vuestorefront
Magento to Vue-storefront datapump - synchronizes Products, Categories and Product-to-category links between your Magento2 API and NoSQL database of vue-storefront
Stars: ✭ 183 (-4.19%)
Mutual labels:  redis
Interview Comment
Stars: ✭ 182 (-4.71%)
Mutual labels:  redis
Lua Resty Redis Connector
Connection utilities for lua-resty-redis
Stars: ✭ 186 (-2.62%)
Mutual labels:  redis
Phpfastcache
A high-performance backend cache system. It is intended for use in speeding up dynamic web applications by alleviating database load. Well implemented, it can drops the database load to almost nothing, yielding faster page load times for users, better resource utilization. It is simple yet powerful.
Stars: ✭ 2,171 (+1036.65%)
Mutual labels:  redis
Nest
Generate nested namespaced keys for key-value databases.
Stars: ✭ 188 (-1.57%)
Mutual labels:  redis
Ioredis Mock
Emulates ioredis by performing all operations in-memory.
Stars: ✭ 181 (-5.24%)
Mutual labels:  redis
Ebook Chat App Spring Websocket Cassandra Redis Rabbitmq
Pro Java Clustering and Scalability: Building Real-Time Apps with Spring, Cassandra, Redis, WebSocket and RabbitMQ
Stars: ✭ 186 (-2.62%)
Mutual labels:  redis
Redis4cats
🔖 Redis client built on top of Cats Effect, Fs2 and Lettuce
Stars: ✭ 189 (-1.05%)
Mutual labels:  redis
Back End Interview
后端面试题汇总(Python、Redis、MySQL、PostgreSQL、Kafka、数据结构、算法、编程、网络)
Stars: ✭ 188 (-1.57%)
Mutual labels:  redis
Springboot Learning
《Spring Boot基础教程》,2.x版本持续连载中!点击下方链接直达教程目录!
Stars: ✭ 13,916 (+7185.86%)
Mutual labels:  redis

Daily Report 日报管理工具

写日报工具,该工具简单易用,包含网页和手机版。使用该日报工具可以随时随地使用手机或者电脑写和浏览日报. 提供小团队的日报工具,发现问题请提交issue,看到会第一时间回复修正~~共勉.

详细的说明,请参考Daily Report安装说明

目录说明

工程目录
├── README.md
├── ReportServe
├── app.js
├── changelog.md
├── changelog.sh
├── config.coffee
├── config.js
├── controlers
│   ├── adminCtr.coffee
│   ├── adminCtr.js
│   ├── departmentCtr.coffee
│   ├── departmentCtr.js
│   ├── installCtr.coffee
│   ├── installCtr.js
│   ├── reportCtr.coffee
│   ├── reportCtr.js
│   ├── userCtr.coffee
│   └── userCtr.js
├── dailyReportServer
├── models
│   ├── departmentsModel.coffee
│   ├── departmentsModel.js
│   ├── reportModel.coffee
│   ├── reportModel.js
│   ├── usersModel.coffee
│   └── usersModel.js
├── other&this
│   └── db-info.md
├── package.json
├── routes
│   ├── routeProfile.coffee
│   └── routeProfile.js
├── utils.coffee
├── utils.js
├── views
│   ├── admin
│   │   ├── admingroup.hbs
│   │   ├── department.hbs
│   │   └── users.hbs
│   ├── install.hbs
│   ├── login.hbs
│   ├── mobile
│   │   ├── layout.hbs
│   │   ├── login.hbs
│   │   ├── password.hbs
│   │   ├── show.hbs
│   │   ├── showsubordinate.hbs
│   │   └── write.hbs
│   ├── password.hbs
│   ├── show.hbs
│   ├── showsubordinate.hbs
│   └── write.hbs
└── vo
    ├── Response.coffee
    └── Response.js

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].