JavaSwing / C# 自助洗衣系统

2023-10-13 22:10

本文主要是介绍JavaSwing / C# 自助洗衣系统,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

说明

此系统同时支持mysql,sqlserver,有javaswing窗体和C#窗体两套代码

数据库文件

自助洗衣系统

数据库设计

关系模型

管理员(主键,用户名,密码,姓名,电话)

用户(主键,用户名,密码,名称,性别,电话,身份证)

订单(主键,用户,洗衣模式,水量,开始时间,订单状态,价格)

故障报警(主键,洗衣机编号,故障描述,创建时间)

数据字典

管理员表

字段名

字段

数据类型

约束

描述

主键

id

varchar(40)

primary key;

唯一标识

用户名

username

varchar(20)

not null;unique;

不可为空;字段唯一;

密码

password

varchar(20)

姓名

name

varchar(12)

not null;

不可为空;

电话

tele

varchar(11)

用户表

字段名

字段

数据类型

约束

描述

主键

id

varchar(40)

primary key;

唯一标识

用户名

username

varchar(20)

not null;unique;

不可为空;字段唯一;

密码

password

varchar(20)

名称

name

varchar(18)

not null;unique;

不可为空;字段唯一;

性别

gender

varchar(10)

电话

tele

varchar(11)

身份证

idnum

varchar(18)

not null;

不可为空;

订单表

字段名

字段

数据类型

约束

描述

主键

id

varchar(40)

primary key;

唯一标识

用户

userId

varchar(255)

not null;

不可为空;

洗衣模式

model

varchar(255)

not null;

不可为空;

水量

water

int

not null;

不可为空;

开始时间

starttime

datetime

not null;

不可为空;

订单状态

status

varchar(255)

"已下单"

价格

price

double

故障报警表

字段名

字段

数据类型

约束

描述

主键

id

varchar(40)

primary key;

唯一标识

洗衣机编号

numb

varchar(255)

故障描述

description

varchar(255)

创建时间

createtime

datetime

not null;

new Date()

部分代码

package com.codeying.frame;import com.codeying.dao.EmployeeDao;
import com.codeying.entity.Employee;import com.codeying.dao.DepartmentDao;
import com.codeying.entity.Department;import com.codeying.utils.JdbcUtils;
import com.codeying.utils.Utils;
import com.mysql.jdbc.StringUtils;import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.net.URL;public class MyInfoEmployee extends JInternalFrame {private JPanel jContentPane;private JLabel label_role = new JLabel("角色");private JTextField tb_role = new JTextField();private JLabel label_username = new JLabel("用户名");private JTextField tb_username= new JTextField();private JLabel label_name = new JLabel("姓名");private JTextField tb_name= new JTextField();private JLabel label_gender = new JLabel("性别");private JComboBox tb_gender = new JComboBox();private JLabel label_department = new JLabel("部门");private JComboBox tb_department = new JComboBox();private JLabel label_birth = new JLabel("出生日期");private JTextField tb_birth= new JTextField();private JLabel label_minzu = new JLabel("名族");private JTextField tb_minzu= new JTextField();private JLabel label_socialposition = new JLabel("政治面貌");private JTextField tb_socialposition= new JTextField();private JLabel label_xueli = new JLabel("学历");private JComboBox tb_xueli = new JComboBox();private JLabel label_position = new JLabel("职位");private JTextField tb_position= new JTextField();private JLabel label_stauts = new JLabel("在职状态");private JComboBox tb_stauts = new JComboBox();private JButton btn = new JButton("保存");private URL imgURL ;private BtnListener btnListener;public MyInfoEmployee (){init();}/*** 监听类*/public class BtnListener implements ActionListener {public void actionPerformed(ActionEvent e) {Employee t = Login.employee;                                                                                                                                                  //不可为空字段if (StringUtils.isNullOrEmpty(tb_name .getText().trim())){JOptionPane.showMessageDialog(null, "姓名 不可为空");return;}if(FormEmployeeAdd .illegalAdd( Login.employee .getId(),"username",tb_username .getText().trim())){JOptionPane.showMessageDialog(null, "用户名 : 已存在!");return;}t.setUsername (tb_username .getText().trim());t.setName (tb_name .getText().trim());t.setGender ((String)(tb_gender .getSelectedItem()));//下拉框t.setDepartmentId (getByIndexDepartmentId (tb_department .getSelectedIndex()));//外键t.setBirth (tb_birth .getText().trim());t.setMinzu (tb_minzu .getText().trim());t.setSocialposition (tb_socialposition .getText().trim());t.setXueli ((String)(tb_xueli .getSelectedItem()));//下拉框t.setPosition (tb_position .getText().trim());t.setStauts ((String)(tb_stauts .getSelectedItem()));//下拉框//提交EmployeeDao dao = EmployeeDao.me();int res = dao.updateById(t);if(res==1){Login.employee = t;JOptionPane.showMessageDialog(null, "更新成功!");}else{JOptionPane.showMessageDialog(null, "更新失败");}}}/*** 初始化界面*/public void init(){//设置下拉框\外键tb_gender .addItem("");tb_gender .addItem("男");tb_gender .addItem("女");setDepartmentId(tb_department);tb_xueli .addItem("");tb_xueli .addItem("本科");tb_xueli .addItem("硕士");tb_xueli .addItem("博士");tb_xueli .addItem("大专");tb_xueli .addItem("其他");tb_stauts .addItem("");tb_stauts .addItem("在职");tb_stauts .addItem("离职");tb_stauts .addItem("退休");tb_stauts .addItem("实习");//设置主窗体this.setSize(296, 350);this.setTitle("个人中心");//窗体名this.setResizable(true);this.setClosable(true);this.setMaximizable(true);this.setIconifiable(true);int x = 29,y = 0;label_username.setBounds(new Rectangle(x, y, 71, 19));tb_username.setBounds(new Rectangle(x+90, y, 124, 23));tb_username.setText(Login.employee .getUsername());tb_username.setEditable(false);y+=30;label_role.setBounds(new Rectangle(x, y, 71, 19));tb_role.setBounds(new Rectangle(x+90, y, 124, 23));tb_role.setText(Login.employee .getRole());tb_role.setEditable(false);y+=30;//TODO 其他属性label_name .setBounds(new Rectangle(x, y, 71, 19));tb_name .setBounds(new Rectangle(x+90, y, 124, 23));tb_name .setText(Login.employee . getName ());y+=30;label_gender .setBounds(new Rectangle(x, y, 71, 19));tb_gender .setBounds(new Rectangle(x+90, y, 124, 23));tb_gender .setSelectedItem(Login.employee .getGender ());y+=30;label_department .setBounds(new Rectangle(x, y, 71, 19));tb_department .setBounds(new Rectangle(x+90, y, 124, 23));tb_department .setSelectedItem( getActiveDepartmentId (Login. employee .getDepartmentId ()) );y+=30;label_birth .setBounds(new Rectangle(x, y, 71, 19));tb_birth .setBounds(new Rectangle(x+90, y, 124, 23));tb_birth .setText(Login.employee . getBirth ());y+=30;label_minzu .setBounds(new Rectangle(x, y, 71, 19));tb_minzu .setBounds(new Rectangle(x+90, y, 124, 23));tb_minzu .setText(Login.employee . getMinzu ());y+=30;label_socialposition .setBounds(new Rectangle(x, y, 71, 19));tb_socialposition .setBounds(new Rectangle(x+90, y, 124, 23));tb_socialposition .setText(Login.employee . getSocialposition ());y+=30;label_xueli .setBounds(new Rectangle(x, y, 71, 19));tb_xueli .setBounds(new Rectangle(x+90, y, 124, 23));tb_xueli .setSelectedItem(Login.employee .getXueli ());y+=30;label_position .setBounds(new Rectangle(x, y, 71, 19));tb_position .setBounds(new Rectangle(x+90, y, 124, 23));tb_position .setText(Login.employee . getPosition ());y+=30;label_stauts .setBounds(new Rectangle(x, y, 71, 19));tb_stauts .setBounds(new Rectangle(x+90, y, 124, 23));tb_stauts .setSelectedItem(Login.employee .getStauts ());y+=30;btn.setBounds(new Rectangle(130, y, 100, 26));getRootPane().setDefaultButton(btn);// 设置回车键jContentPane = new JPanel();// 新建jPanel面板jContentPane.setLayout(null);jContentPane.setBackground(new Color(255, 255, 255));setContentPane(jContentPane);jContentPane.add(label_username);jContentPane.add(tb_username);jContentPane.add(label_role);jContentPane.add(tb_role);//TODOjContentPane.add(label_name);jContentPane.add(tb_name);jContentPane.add(label_gender);jContentPane.add(tb_gender);jContentPane.add(label_department);jContentPane.add(tb_department);jContentPane.add(label_birth);jContentPane.add(tb_birth);jContentPane.add(label_minzu);jContentPane.add(tb_minzu);jContentPane.add(label_socialposition);jContentPane.add(tb_socialposition);jContentPane.add(label_xueli);jContentPane.add(tb_xueli);jContentPane.add(label_position);jContentPane.add(tb_position);jContentPane.add(label_stauts);jContentPane.add(tb_stauts);jContentPane.add(btn);btnListener = new BtnListener();btn.addActionListener(btnListener);}//存储外键数据 tb_departmentprivate java.util.List<Department> listDepartmentId;private void setDepartmentId (JComboBox comboBox){DepartmentDao dao = DepartmentDao.me();listDepartmentId = dao.list();comboBox.addItem("");for (Department i:listDepartmentId){comboBox.addItem(i.getName ());//对应外键字段}}//获取idprivate String getByIndexDepartmentId (int index){index = index-1;if(index<0 || index>=listDepartmentId .size()){return "";}return listDepartmentId .get(index).getId();}//回显时private String getActiveDepartmentId (String id){for (Department i:listDepartmentId){if(i.getId().equals(id)){return i.getName ();//对应外键字段}}return "请选择";}}

系统截图

 

 

 

 

这篇关于JavaSwing / C# 自助洗衣系统的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/206189

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

基于人工智能的图像分类系统

目录 引言项目背景环境准备 硬件要求软件安装与配置系统设计 系统架构关键技术代码示例 数据预处理模型训练模型预测应用场景结论 1. 引言 图像分类是计算机视觉中的一个重要任务,目标是自动识别图像中的对象类别。通过卷积神经网络(CNN)等深度学习技术,我们可以构建高效的图像分类系统,广泛应用于自动驾驶、医疗影像诊断、监控分析等领域。本文将介绍如何构建一个基于人工智能的图像分类系统,包括环境

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,