摘要:
https://blog.csdn.net/jiuyou91/article/details/127630601 阅读全文
摘要:
https://baijiahao.baidu.com/s?id=1742919663531287416&wfr=spider&for=pc 阅读全文
摘要:
# 一、四要素  # 二、简历模版  Option Explicit Private Sub Worksheet_Change(ByVal Target As Range) '让数据有效性选择 可以多选,复选 Dim rngDV As Range Dim oldVal As Str 阅读全文
摘要:
人力资源管理系统- 部门管理(原始方式) 一 、网页样式草图 二、设计模板 layout.html 代码 {% load static %} <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>新增部门</tit 阅读全文
摘要:
Django项目-人力资源管理系统-设计表结构 一、在models.py中编写表结构 创建两张表:部门表 和 用户信息表 from django.db import models # Create your models here. class Department(models.Model): ' 阅读全文
摘要:
人力资源管理系统【HRMS】 一、pycharm 新建项目 1.新建项目 1.1 新建项目 1.2 清空默认的DIRS,并删除默认的 templates 文件夹 2.创建及配置APP-website 2.1 方法1:终端输入 python manage.py startapp website 2.2 阅读全文
摘要:
ORM连接数据库 一、安装第三方插件mysqlclient 1.客户端安装 pip install mysqlclient 2.Pycharm安装 二、连接数据库 1.settings设置 数据库配置文档参考:Settings | Django documentation | Django (dja 阅读全文
摘要:
orm 链接数据库 一、安装第三方插件。 pip install mysqlclient 阅读全文