SSM+Vue在线OA办公系统

         在线办公分三个用户登录,管理员,经理,员工。   SSM架构,maven管理工具,数据库Mysql,系统有文档,可有偿安装调试及讲解,项目保证质量。需要划到 最底 下可以联系到我。
 
功能如下:
1.个人信息修改
2.部门管理
3.财务报账类型管理
4.帖子类管理
5.公文类型管理
6.新闻类型管理
8.请假类型管理
9.日程类型管理
10邮件类型管理
11.职位管理
12.部门任命管理
13.考勤管理
14.论坛管理
15.公文管理
16.新闻管理
17.请假管理
18日程管理
19.薪资管理
20.邮件管理
21.经理管理
22.员工管理

部分实体设计:

部分表设计

服务表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

yuangong_id

Integer

员工

3

fuwu_uuid_number

String

服务唯一编号

4

fuwu_name

String

服务名称

5

fuwu_types

Integer

服务类型

6

fuwu_content

String

服务详情

7

chuli_types

Integer

是否处理

8

insert_time

Date

添加时间

9

create_time

Date

创建时间

公告信息表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

gonggao_name

String

公告名称

3

gonggao_photo

String

公告图片

4

gonggao_types

Integer

公告类型

5

insert_time

Date

公告发布时间

6

gonggao_content

String

公告详情

7

create_time

Date

创建时间

代码示例:
出业务接口

import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.ChuqinEntity;
import com.entity.YonghuEntity;
import com.entity.view.ChuqinView;
import com.service.ChuqinService;
import com.service.DictionaryService;
import com.service.YonghuService;
import com.utils.PageUtils;
import com.utils.PoiUtil;
import com.utils.R;
import com.utils.StringUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.net.URL;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;/*** 考勤* 后端接口*/
@RestController
@Controller
@RequestMapping("/chuqin")
public class ChuqinController {private static final Logger logger = LoggerFactory.getLogger(ChuqinController.class);@Autowiredprivate ChuqinService chuqinService;@Autowiredprivate DictionaryService dictionaryService;//级联表service@Autowiredprivate YonghuService yonghuService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params, HttpServletRequest request) {logger.debug("page方法:,,Controller:{},,params:{}", this.getClass().getName(), JSONObject.toJSONString(params));String role = String.valueOf(request.getSession().getAttribute("role"));if (false)return R.error(511, "永不会进入");else if ("维修人员".equals(role))params.put("weixiurenyuanId", request.getSession().getAttribute("userId"));else if ("员工".equals(role))params.put("yonghuId", request.getSession().getAttribute("userId"));if (params.get("orderBy") == null || params.get("orderBy") == "") {params.put("orderBy", "id");}PageUtils page = chuqinService.queryPage(params);//字典表数据转换List<ChuqinView> list = (List<ChuqinView>) page.getList();for (ChuqinView c : list) {//修改对应字典表字段dictionaryService.dictionaryConvert(c, request);}return R.ok().put("data", page);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id, HttpServletRequest request) {logger.debug("info方法:,,Controller:{},,id:{}", this.getClass().getName(), id);ChuqinEntity chuqin = chuqinService.selectById(id);if (chuqin != null) {//entity转viewChuqinView view = new ChuqinView();BeanUtils.copyProperties(chuqin, view);//把实体数据重构到view中//级联表YonghuEntity yonghu = yonghuService.selectById(chuqin.getYonghuId());if (yonghu != null) {BeanUtils.copyProperties(yonghu, view, new String[]{"id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段view.setYonghuId(yonghu.getId());}//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);} else {return R.error(511, "查不到数据");}}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody ChuqinEntity chuqin, HttpServletRequest request) {logger.debug("save方法:,,Controller:{},,chuqin:{}", this.getClass().getName(), chuqin.toString());String role = String.valueOf(request.getSession().getAttribute("role"));if (false)return R.error(511, "永远不会进入");else if ("员工".equals(role))chuqin.setYonghuId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));Wrapper<ChuqinEntity> queryWrapper = new EntityWrapper<ChuqinEntity>().eq("yonghu_id", chuqin.getYonghuId()).eq("chuqin_types", chuqin.getChuqinTypes()).eq("overtimeNumber", chuqin.getOvertimeNumber()).eq("insert_time", new SimpleDateFormat("yyyy-MM-dd").format(new Date()));logger.info("sql语句:" + queryWrapper.getSqlSegment());ChuqinEntity chuqinEntity = chuqinService.selectOne(queryWrapper);if (chuqinEntity == null) {chuqin.setInsertTime(new Date());chuqin.setCreateTime(new Date());chuqinService.insert(chuqin);return R.ok();} else {return R.error(511, "表中有相同数据");}}/*** 后端修改*/@RequestMapping("/update")public R update(@RequestBody ChuqinEntity chuqin, HttpServletRequest request) {logger.debug("update方法:,,Controller:{},,chuqin:{}", this.getClass().getName(), chuqin.toString());//根据字段查询是否有相同数据Wrapper<ChuqinEntity> queryWrapper = new EntityWrapper<ChuqinEntity>().notIn("id", chuqin.getId()).andNew().eq("yonghu_id", chuqin.getYonghuId()).eq("chuqin_types", chuqin.getChuqinTypes()).eq("overtimeNumber", chuqin.getOvertimeNumber()).eq("insert_time", new SimpleDateFormat("yyyy-MM-dd").format(chuqin.getInsertTime()));logger.info("sql语句:" + queryWrapper.getSqlSegment());ChuqinEntity chuqinEntity = chuqinService.selectOne(queryWrapper);if (chuqinEntity == null) {chuqinService.updateById(chuqin);//根据id更新return R.ok();} else {return R.error(511, "表中有相同数据");}}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Integer[] ids) {logger.debug("delete:,,Controller:{},,ids:{}", this.getClass().getName(), ids.toString());chuqinService.deleteBatchIds(Arrays.asList(ids));return R.ok();}/*** 批量上传*/@RequestMapping("/batchInsert")public R save(String fileName, HttpServletRequest request) {logger.debug("batchInsert方法:,,Controller:{},,fileName:{}", this.getClass().getName(), fileName);try {List<ChuqinEntity> chuqinList = new ArrayList<>();//上传的东西Map<String, List<String>> seachFields = new HashMap<>();//要查询的字段Date date = new Date();int lastIndexOf = fileName.lastIndexOf(".");if (lastIndexOf == -1) {return R.error(511, "该文件没有后缀");} else {String suffix = fileName.substring(lastIndexOf);if (!".xls".equals(suffix)) {return R.error(511, "只支持后缀为xls的excel文件");} else {URL resource = this.getClass().getClassLoader().getResource("../../upload/" + fileName);//获取文件路径File file = new File(resource.getFile());if (!file.exists()) {return R.error(511, "找不到上传文件,请联系管理员");} else {List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件dataList.remove(0);//删除第一行,因为第一行是提示for (List<String> data : dataList) {//循环ChuqinEntity chuqinEntity = new ChuqinEntity();chuqinList.add(chuqinEntity);//把要查询是否重复的字段放入map中}//查询是否重复chuqinService.insertBatch(chuqinList);return R.ok();}}}} catch (Exception e) {e.printStackTrace();return R.error(511, "批量插入数据异常,请联系管理员");}}/*** 打卡*/@RequestMapping("/clockIn")public R clockIn(String flag, HttpServletRequest request) {logger.debug("clockIn方法:,,Controller:{},,flag:{}", this.getClass().getName(), flag);try {Integer id = (Integer) request.getSession().getAttribute("userId");String role = String.valueOf(request.getSession().getAttribute("role"));if (StringUtil.isEmpty(role) || "管理员".equals(role)) {return R.error(511, "没有打卡权限");}Date d = new Date();SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd");String date = format1.format(d);List<ChuqinEntity> chuqinList = new ArrayList<ChuqinEntity>();//要生成的list数据List<String> s = new ArrayList<>();s.add("yonghu_id+0");Wrapper<ChuqinEntity> queryWrapper3 = new EntityWrapper<ChuqinEntity>().eq("yonghu_id", id).orderDesc(s);List<ChuqinEntity> oldChuqinList = chuqinService.selectList(queryWrapper3);if ("1".equals(flag)) {//上班卡Date date1 = new Date();date1.setHours(8);date1.setMinutes(0);date1.setSeconds(0);//上班打卡//新增前先查看当前用户最大打卡时间if (oldChuqinList != null && oldChuqinList.size() > 0) {ChuqinEntity entity = oldChuqinList.get(0);Date todayTime = entity.getInsertTime();//获取出勤表最大出勤String today = format1.format(todayTime);//把日期加一天Calendar calendar = new GregorianCalendar();calendar.setTime(todayTime);calendar.add(calendar.DATE, 1);String newToday = format1.format(calendar.getTime());if (date.equals(today)) {return R.error(511, "已经打过上班卡了");} else if (!date.equals(newToday)) {//当天日期 不是出勤最大日期加一天的话   就是补充缺勤日期chuqinList = this.getQueQin(d, format1, today, id);}if (chuqinList != null && chuqinList.size() > 0) {chuqinService.insertBatch(chuqinList);}//插入当天的上班卡ChuqinEntity chuqin = new ChuqinEntity();chuqin.setOnTime(d);if (d.compareTo(date1) > 0) {//当前时间d 大于规定时间date1chuqin.setChuqinTypes(6);//设置为迟到} else if (d.compareTo(date1) <= 0) {//当前时间d 小于等于规定时间date1chuqin.setChuqinTypes(3);//设置为未打下班卡}chuqin.setCreateTime(d);chuqin.setInsertTime(format1.parse(date));chuqin.setYonghuId(id);chuqinService.insert(chuqin);} else {//第一次打卡ChuqinEntity chuqin = new ChuqinEntity();chuqin.setOnTime(d);if (d.compareTo(date1) > 0) {//当前时间d 大于规定时间date1chuqin.setChuqinTypes(6);//设置为迟到} else if (d.compareTo(date1) <= 0) {//当前时间d 小于等于规定时间date1chuqin.setChuqinTypes(3);//设置为未打下班卡}chuqin.setCreateTime(d);chuqin.setInsertTime(format1.parse(date));chuqin.setYonghuId(id);chuqinService.insert(chuqin);}} else if ("2".equals(flag)) {//下班打卡的地方Date date1 = new Date();date1.setHours(19);date1.setMinutes(00);date1.setSeconds(0);Date date2 = new Date();date2.setHours(18);date2.setMinutes(00);date2.setSeconds(0);//下班打卡if (oldChuqinList != null) {//不是第一次打卡//查询当前用户是否生成了上班打卡Wrapper<ChuqinEntity> queryWrapper = new EntityWrapper<ChuqinEntity>().eq("yonghu_id", id).eq("insert_time", date).orderDesc(s);ChuqinEntity chuqinEntity = chuqinService.selectOne(queryWrapper);if (chuqinEntity != null) {//生成了上班打卡chuqinEntity.setDownTime(d);if ("6".equals(String.valueOf(chuqinEntity.getChuqinTypes()))) {} else if (d.compareTo(date1) > 0) {//当前时间d 大于规定时间   加班int hours = d.getHours();int i = hours - 19 + 1;if (i > 0) {chuqinEntity.setOvertimeNumber(i);}chuqinEntity.setChuqinTypes(5);//设置为迟到} else if (d.compareTo(date2) < 0) {//当前时间d 小于等于规定时间 早退chuqinEntity.setChuqinTypes(7);//设置为未打下班卡} else {chuqinEntity.setChuqinTypes(1);}chuqinService.updateById(chuqinEntity);} else {//当天上午没有生成上班打卡,要防止用户昨天及之前没有生成打卡记录Wrapper<ChuqinEntity> queryWrapper1 = new EntityWrapper<ChuqinEntity>().eq("yonghu_id", id).orderDesc(s);List<ChuqinEntity> list = chuqinService.selectList(queryWrapper1);if (list != null && list.size() > 0) {ChuqinEntity entity = list.get(0);Date todayTime = entity.getInsertTime();//获取出勤表最大出勤String today = format1.format(todayTime);Calendar calendar = new GregorianCalendar();calendar.setTime(todayTime);calendar.add(calendar.DATE, 1);String newToday = format1.format(calendar.getTime());if (date.equals(today)) {//昨天id+1  等于今天的话  就是直接新增下午打卡ChuqinEntity chuqin = new ChuqinEntity();chuqin.setDownTime(d);chuqin.setChuqinTypes(2);chuqinService.insert(chuqin);} else if (!date.equals(newToday)) {//当天日期 不是出勤最大日期加一天的话   就是补充缺勤日期chuqinList = this.getQueQin(d, format1, today, id);}if (chuqinList != null && chuqinList.size() > 0) {chuqinService.insertBatch(chuqinList);}}}} else {//第一次打卡ChuqinEntity chuqin = new ChuqinEntity();chuqin.setDownTime(d);chuqin.setChuqinTypes(2);chuqinService.insert(chuqin);}} else {return R.error(511, "未知错误");}} catch (ParseException e) {e.printStackTrace();} catch (Exception e) {e.printStackTrace();}return R.ok();}/*** 补充缺勤和未打的情况** @param d        当前日期* @param format1  "yyyy-MM-dd"* @param newToday 数据库存的最大打卡日期 加一天* @param id       打卡人id* @return* @throws ParseException*/public static List<ChuqinEntity> getQueQin(Date d, SimpleDateFormat format1, String newToday, Integer id) throws ParseException {List<ChuqinEntity> list = new ArrayList<>();// 返回的日期集合DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");Date start = dateFormat.parse(newToday);//缺勤那天Calendar calendar = new GregorianCalendar();calendar.setTime(d);calendar.add(calendar.DATE, -1); //当前时间减去一天,即一天前的时间Date end = dateFormat.parse(format1.format(calendar.getTime()));Calendar tempStart = Calendar.getInstance();tempStart.setTime(start);Calendar tempEnd = Calendar.getInstance();tempEnd.setTime(end);tempEnd.add(Calendar.DATE, +1);// 日期加1(包含结束)while (tempStart.before(tempEnd)) {ChuqinEntity chuqinEntity = new ChuqinEntity();chuqinEntity.setYonghuId(id);chuqinEntity.setInsertTime(tempStart.getTime());chuqinEntity.setCreateTime(d);chuqinEntity.setChuqinTypes(4);list.add(chuqinEntity);tempStart.add(Calendar.DAY_OF_YEAR, 1);}return list;}
}

出勤实体类

import com.entity.ChuqinEntity;
import com.baomidou.mybatisplus.annotations.TableName;
import org.apache.commons.beanutils.BeanUtils;import java.lang.reflect.InvocationTargetException;import org.springframework.format.annotation.DateTimeFormat;
import com.fasterxml.jackson.annotation.JsonFormat;import java.io.Serializable;
import java.util.Date;/*** 考勤* 后端返回视图实体辅助类* (通常后端关联的表或者自定义的字段需要返回使用)*/
@TableName("chuqin")
@Date
public class ChuqinView extends ChuqinEntity {/*** 打卡类型的值*/private String chuqinValue;//级联表 yonghu/*** 员工编号*/private String yonghuUuidNumber;/*** 员工姓名*/private String yonghuName;/*** 员工手机号*/private String yonghuPhone;/*** 员工身份证号*/private String yonghuIdNumber;/*** 员工头像*/private String yonghuPhoto;/*** 电子邮箱*/private String yonghuEmail;/*** 部门*/private Integer bumenTypes;/*** 部门的值*/private String bumenValue;/*** 职位*/private Integer zhiweiTypes;/*** 职位的值*/private String zhiweiValue;
}

需要加我私聊即可:

                               

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/831405.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

蓝桥杯练习系统(算法训练)ALGO-950 逆序数奇偶

资源限制 内存限制&#xff1a;256.0MB C/C时间限制&#xff1a;1.0s Java时间限制&#xff1a;3.0s Python时间限制&#xff1a;5.0s 问题描述 老虎moreD是一个勤于思考的青年&#xff0c;线性代数行列式时&#xff0c;其定义中提到了逆序数这一概念。不过众所周知我们…

nginx--location详细使用和账户认证

在没有使用正则表达式的时候&#xff0c;nginx会先在server中的多个location选取匹配度最高的一个uri&#xff0c;uri是用户请求的字符串&#xff0c;即域名后面的web文件路径&#xff0c;然后使用该location模块中的正则url和字符串串&#xff0c;如果匹配成功就结束搜索&…

C语言----贪吃蛇(补充)

各位看官好&#xff0c;我想大家应该已经看过鄙人的上一篇博客贪吃蛇了吧。鄙人在上一篇博客中只是着重的写了贪吃蛇的实现代码&#xff0c;但是前期的一些知识还没有具体的介绍&#xff0c;比如确认光标位置&#xff0c;句柄等。那么我这一篇博客就来补充上一篇博客所留下来的…

神经网络中的优化方法

一、引入 在传统的梯度下降优化算法中&#xff0c;如果碰到平缓区域&#xff0c;梯度值较小&#xff0c;参数优化变慢 &#xff0c;遇到鞍点&#xff08;是指在某些方向上梯度为零而在其他方向上梯度非零的点。&#xff09;&#xff0c;梯度为 0&#xff0c;参数无法优化&…

数据结构-AVL树

目录 什么是 AVL 树 ASL 度量查找效率 结构体定义 平衡调整 调整类型 左旋和右旋 右旋 左旋 左、右平衡调整 左平衡调整 右平衡调整 插入数据 模拟建立 AVL 树 什么是 AVL 树 二叉排序树的形状取决于数据集&#xff0c;当二叉树的高度越小、结构越合理&#xff0c…

thinkphp家政上门预约服务小程序家政保洁师傅上门服务小程序上门服务在线派单安装教程

介绍 thinkphp家政上门预约服务小程序家政保洁师傅上门服务小程序上门服务在线派单安装教程 上门预约服务派单小程序家政小程序同城预约开源代码独立版安装教程 程序完整&#xff0c;经过安装检测&#xff0c;可放心下载安装。 适合本地的一款上门预约服务小程序&#xff0…

计算机网络——初识网络

一、局域网与广域网 1.局域网&#xff08;LAN&#xff09; 局域网&#xff1a;即Local Area Network&#xff0c;简称LAN。Local即标识了局域⽹是本地&#xff0c;局部组建的⼀种私有⽹络。局域⽹内的主机之间能⽅便的进⾏⽹络通信&#xff0c;⼜称为内⽹&#xff1b;局域⽹和…

A4的PDF按A3打印

先用办公软件打开&#xff0c;比如WPS。 选择打印-属性。 纸张选A3&#xff0c;如果是双面打印&#xff0c;选短边装订&#xff0c;然后在版面-页面排版-每张页数&#xff08;N合1&#xff09;选2。 不同打印机的具体配置可能不一样&#xff0c;但大体都是这个套路。

[NSSCTF]prize_p1

前言 之前做了p5 才知道还有p1到p4 遂来做一下 顺便复习一下反序列化 prize_p1 <META http-equiv"Content-Type" content"text/html; charsetutf-8" /><?phphighlight_file(__FILE__);class getflag{function __destruct(){echo getenv(&qu…

The Role of Subgroup Separability in Group-Fair Medical Image Classification

文章目录 The Role of Subgroup Separability in Group-Fair Medical Image Classification摘要方法实验结果 The Role of Subgroup Separability in Group-Fair Medical Image Classification 摘要 研究人员调查了深度分类器在性能上的差异。他们发现&#xff0c;分类器将个…

基于Springboot的民宿管理平台

基于SpringbootVue的民宿管理平台设计与实现 开发语言&#xff1a;Java数据库&#xff1a;MySQL技术&#xff1a;SpringbootMybatis工具&#xff1a;IDEA、Maven、Navicat 系统展示 用户登录 首页 民宿信息 后台登录 后台首页 用户管理 商家管理 民宿信息管理 房间类型管理 …

【正版系统】知识付费系统搭建,系统模板开发完善功能强大,支持快速部署上线

在数字化时代&#xff0c;知识付费已成为一种趋势&#xff0c;为内容创作者和求知者搭建了一个高效的交流平台。今天&#xff0c;我要为大家介绍一款功能强大的知识付费系统。 知识付费系统模板是我们一款经过精心开发、完善的系统&#xff0c;旨在为用户提供一站式的知识付费…

【Docker】如何注册Hub账号并上传镜像到Hub仓库

一、创建Hub账户 浏览器访问&#xff1a;hub.docker.com 点击【Sign up】注册账号 输入【邮箱】【用户名】【密码】 ps&#xff1a;用户名要有字母数字&#xff1b;订阅不用勾选 点击【Sign up】注册即可 点击【Sign in】登录账号 输入【邮箱】【密码】 点击【Continue】登录 二…

Unreal 编辑器工具 批量重命名资源

右键 - Editor Utilities - Editor Utility Blueprint&#xff0c;基类选择 Asset Action Utility 在类默认值内&#xff0c;可以添加筛选器&#xff0c;筛选指定的类型 然后新建一个函数&#xff0c;加上4个输入&#xff1a;ReplaceFrom&#xff0c;ReplaceTo&#xff0c;Add…

大数据学习笔记14-Hive基础2

一、数据字段类型 数据类型 &#xff1a;LanguageManual Types - Apache Hive - Apache Software Foundation 基本数据类型 数值相关类型 整数 tinyint smallint int bigint 小数 float double decimal 精度最高 日期类型 date 日期 timestamps 日期时间 字符串类型 s…

nginx--自定义日志跳转长连接文件缓存状态页

自定义日志服务 [rootlocalhost ~]# cat /apps/nginx/conf/conf.d/pc.conf server {listen 80;server_name www.fxq.com;error_log /data/nginx/logs/fxq-error.log info;access_log /data/nginx/logs/fxq-access.log main;location / {root /data/nginx/html/pc;index index…

使用STM32F103C8T6与蓝牙模块HC-05连接实现手机蓝牙控制LED灯

导言: 在现代智能家居系统中,远程控制设备变得越来越普遍和重要。本文将介绍如何利用STM32F103C8T6单片机和蓝牙模块HC-05实现远程控制LED灯的功能。通过这个简单的项目,可以学会如何将嵌入式系统与蓝牙通信技术相结合,实现远程控制的应用。 目录 导言: 准备工作: 硬…

Java零基础入门到精通_Day 11

1.继承 定义&#xff1a; 继承是面向对象三大特征之一。可以使得子类具有父类的属性和方法&#xff0c;还可以在子类中重新定义&#xff0c;追加属性和方法 格式&#xff1a; public class 子类 extends 父类{} 子类&#xff1a;也叫派生类 父类&#xff1a;基类/超类 继…

低代码技术在构建质量管理系统中的应用与优势

引言 在当今快节奏的商业环境中&#xff0c;高效的质量管理系统对于组织的成功至关重要。质量管理系统帮助组织确保产品或服务符合客户的期望、符合法规标准&#xff0c;并持续改进以满足不断变化的需求。与此同时&#xff0c;随着技术的不断进步&#xff0c;低代码技术作为一…

机器学习笔记-14

机器学习系统设计 1.导入 以垃圾邮件分类器为例子&#xff0c;当我们想要做一个能够区分邮件是否为垃圾邮件的项目的时候&#xff0c;首先在大量垃圾邮件中选出出现频次较高的10000-50000词作为词汇表&#xff0c;并为其设置特征&#xff0c;在对邮件分析的时候输出该邮件的特…