package com.forest.communityproperty.contoller;
import com.forest.communityproperty.entity.*;
import com.forest.communityproperty.global.Forest_variable;
import com.forest.communityproperty.service.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@RestController
public class Forest_roomnamemessageController {
//map存储数据
private Map<String, Object> map = new HashMap<>();
//使用数据存储房间编号,楼房编号,业主编号
private int[] arr = new int[3];
//统计数据的页数和单页数据
private int count, num;
//日常统计信息
public Forest_currentEntry f = new Forest_currentEntry();
/**
* 系统管理业务层
*/
//楼房与房间的关联service层
@Autowired
private Forest_roomnamemessageService forest_roomnamemessageService;
//日常信息的service层
@Autowired
private Forest_currentEntryService forest_currentEntryService;
//房间的service层
@Autowired
private Forest_roomnameService forest_roomnameService;
//楼房的service层
@Autowired
private Forest_roommessageService forest_roommessageService;
/**
* floorSelect
* 首次加载页面
*
* @RequestBody Forest_roomnamemessage model, HttpServletRequest request
*/
@RequestMapping("/floorSelect")
public Map<String, Object> insertSelective(@RequestBody Forest_roomnamemessage model, HttpServletRequest request) {
//判断用户是否存在登录了
if (new Forest_variable().variableNameSession(request) == 500) {
//状态码 500错误
map.put("code", 500);
return map;
}
//求出统计的数据
num = count(model);
//查询的业主、房间、楼房、关联四表的数据
List<Forest_roomnamemessage> list = forest_roomnamemessageService.selectEmployee(model);
//系统物业人员的账号名称
map.put("name", new Forest_variable().sessionName(request));
//存储的业主、房间、楼房、关联四表的数据
map.put("user", list);
//统计出来的页数
map.put("num", num);
//状态码 200正确
map.put("code", 200);
return map;
}
/**
* 求出统计的数据
*/
public int count(Forest_roomnamemessage model) {
//查询统计的数据
count = forest_roomnamemessageService.findSelectCount();
//通过计算判断页数
if (count % model.getSize() == 0) {
num = count / model.getSize();
} else {
num = count / model.getSize() + 1;
}
//如果大于8时只能返回8
if (num >= 8) {
return 8;
}
return num;
}
/**
* yeZhuSelectFenYe
* 分页查询
*/
@RequestMapping("/floorSelectFenYe")
public Map<String, Object> yeZhuSelectFenYe(@RequestBody Forest_roomnamemessage model, HttpServletRequest request) {
//求出统计的数据
num = count(model);
//计算起始的值
int ss = model.getNum() * model.getSize();
model.setNum(ss);
//查询的业主、房间、楼房、关联四表的数据
List<Forest_roomnamemessage> list = forest_roomnamemessageService.selectEmployee(model);
//存储的业主、房间、楼房、关联四表的数据
map.put("user", list);
//统计出来的页数
map.put("num", num);
//状态码 200正确
map.put("code", 200);
return map;
}
/**
* floorDelete
* 删除楼房信息
*/
@RequestMapping("/floorDelete")
public Map<String, Object> deleteByPrimaryKey(@RequestParam("roomNameID") int model, HttpServletRequest request, HttpSession session) {
//关联表的实例化
Forest_roomnamemessage ds = new Forest_roomnamemessage();
//设置关联编号
ds.setRoomNameID(model);
//删除关联信息
int shanchu = forest_roomnamemessageService.deleteByPrimaryKey(model);
//判断删除是否成功
if (shanchu == 1) {
//通过关联编号查询业主编号
Forest_roomnamemessage l = forest_roomnamemessageService.findSelectCountID(ds);
/**
* 添加操作信息
* */
//设置业主编号
f.setYeZhuID(l.getYeZhuID());
//设置操作类型
f.setStyleID(3);
//获取session中系统管理员姓名name值
String name = (String) session.getAttribute("name");
//获取session中系统管理员的编号id值
int id = (int) session.getAttribute("id");
//赋值给entity的方法
f.setCurrentEntryName(name);
f.setXtYongHuID(id);
//新增日常信息
int list = forest_currentEntryService.insertSelectiveS(f);
//状态码 成功返回200
map.put("code", 200);
return map;
}
//状态码 失败返回400
map.put("code", 400);
return map;
}
/**
* floorSelectAgo
* 查询之前楼房信息
*/
@RequestMapping("/floorSelectAgo")
public Map<String, Object> floorSelectAgo() {
//查询房间信息
List<Forest_roomname> room = forest_roomnameService.selectEmployee();
//查询楼房信息
List<Forest_roommessage> floor = forest_roommessageService.selectEmployee();
//存储楼房信息
map.put("floor", floor);
//存储房间信息
map.put("room", room);
//状态码 成功返回200
map.put("code", 200);
return map;
}
/**
* floorInsert
* 新增关联信息
*/
@RequestMapping("/floorInsert")
public Map<String, Object> floorInsert(@RequestBody Forest_roomnamemessage model, HttpServletRequest request, HttpSession session) {
//设置时间的格式
SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//获取时间的方法
Date d = new Date();
//将获取的时间转换成设置的时间格式进行存储
model.setRoomNameDate(sf.format(d));
//查询楼房和房间是否已存储
List<Forest_roomnamemessage> list = forest_roomnamemessageService.selectByPrimaryKeys(model);
//如果存在
if (list.size() == 1) {
//状态码 返回400
map.put("code", 400);
return map;
} else {
//存储用户的数据
map.put("list", list);
//新增加业主信息
int add = forest_roomnamemessageService.insertSelective(model);
//进行评判
if (add == 1) {
//设置业主编号
f.setYeZhuID(model.getYeZhuID());
//设置日常操作类型
f.setStyleID(1);
//获取session的物业登录名
String name = (String) session.getAttribute("name");
//获取session的物业编号
int id = (int) session.getAttribute("id");
//设置物业登录名
f.setCurrentEntryName(name);
//设置物业编号
f.setXtYongHuID(id);
//存储日常操作信息
int sist = forest_currentEntryService.insertSelectiveS(f);
//状态码 返回200
辣椒种子
- 粉丝: 4303
- 资源: 5837
最新资源
- COMSOL光学仿真:介电常数近零薄膜等离子体谐振折射率传感
- 新能源电动汽车VCU hil BMS hil硬件在环仿真 文件包含电动汽车整车建模说明书, 模型包含驾驶员模块,仪表模块,BCU整车控制器模块,MCU电机模块,TCU变速箱模块,减速器模块,BMS电池
- STM32F103热电偶采集PID温控采集系统 基于stm32设计,可以实现热电偶采集,PID温度控制,注意51单片机源码基于keil开发环境,STM32源码基于IAR开发环境 提供原理图, PCB
- 通过simulink优化控制参数提高电机效率,进行最大扭矩最小损耗MTPL Max Torque Per Loss 控制,获取电机铁损、铜损最小时候的id,iq电流组合 使用导入的FEM数据和
- 主机厂基于Simulink MBD新能源电动汽车主驱电驱控制器算法模型及开发资料,量产模型,量产软件,量产代码,软件架构设计,输入输出定子,单元测试,MIL测试资料 Sumlink MCU电机控
- 双目相机实现物体三维重建,得到三维点云 可替代RealSenseD435,奥比中光等3D相机,性价比高!RTX3060上可实现50fps Jetson Xavier上可实现8fps 三维重建精度
- COMSOL光学模型:PT对称耦合波导
- 八自由度车辆动力学Simulink仿真模型(前轮转向和四轮转向都有) 目前发现有小辣鸡倒卖我的模型(ip为江苏盐城) 模型包括.slx文件.m车辆参数文件和word说明文档 Matlab版本2018a
- 基于模型预测控制(自带的mpc模块)和最优控制理论的Carsim与Matlab simulink联合仿真实现汽车主动避撞和跟车功能(acc自适应巡航),包含simulink模型(其中有车辆逆纵向动力学
- 永磁直驱风力发电系统,永磁同步电机,风力发电系统,风力机仿真模型,采用背靠背结构 风力机mppt采用最佳尖速比控制,机侧采用零d轴控制;网侧采用电网电压定向矢量双闭环控制 附相关文献
- MATLAB 变步长LMS均衡算法误码率仿真 您看到的介绍及图片即为本程序实现的功能,程序经过我自己电脑的测试,确保能实现相应的功能 有详细的说明文档,能帮助您迅速上手 仿真均衡方式:变步长LMS
- 直流充电桩方案 通讯协议板源码,PCB和原理图,全套
- FPGA SATA IP,K7 V7 KU等全系列支持,可提供源码或网表,附赠使用手册与测试例程 SATA 1 2 3全速支持,三星 凯侠等SSD均通过测试,SATA3速度实测写450MB s,读实
- 基于FPGA的自定义控制命令的串口收发功能 实现pc电脑与fpga的参数控制,可设置波特率,实现实时参数下发,下发参数回显,用于判断参数下发与回读是否一致,目前支持十个参数帧,带仿真,也可支持新增,可
- 深入剖析内容分发网络(CDN)工作原理与应用实践,加速网站访问提升体验
- JavaScript 编程语言的基础知识及应用实例解析
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈