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

相关文章

SpringBoot中六种批量更新Mysql的方式效率对比分析

《SpringBoot中六种批量更新Mysql的方式效率对比分析》文章比较了MySQL大数据量批量更新的多种方法,指出REPLACEINTO和ONDUPLICATEKEY效率最高但存在数据风险,MyB... 目录效率比较测试结构数据库初始化测试数据批量修改方案第一种 for第二种 case when第三种

Java docx4j高效处理Word文档的实战指南

《Javadocx4j高效处理Word文档的实战指南》对于需要在Java应用程序中生成、修改或处理Word文档的开发者来说,docx4j是一个强大而专业的选择,下面我们就来看看docx4j的具体使用... 目录引言一、环境准备与基础配置1.1 Maven依赖配置1.2 初始化测试类二、增强版文档操作示例2.

一文详解如何使用Java获取PDF页面信息

《一文详解如何使用Java获取PDF页面信息》了解PDF页面属性是我们在处理文档、内容提取、打印设置或页面重组等任务时不可或缺的一环,下面我们就来看看如何使用Java语言获取这些信息吧... 目录引言一、安装和引入PDF处理库引入依赖二、获取 PDF 页数三、获取页面尺寸(宽高)四、获取页面旋转角度五、判断

Spring Boot中的路径变量示例详解

《SpringBoot中的路径变量示例详解》SpringBoot中PathVariable通过@PathVariable注解实现URL参数与方法参数绑定,支持多参数接收、类型转换、可选参数、默认值及... 目录一. 基本用法与参数映射1.路径定义2.参数绑定&nhttp://www.chinasem.cnbs

JAVA中安装多个JDK的方法

《JAVA中安装多个JDK的方法》文章介绍了在Windows系统上安装多个JDK版本的方法,包括下载、安装路径修改、环境变量配置(JAVA_HOME和Path),并说明如何通过调整JAVA_HOME在... 首先去oracle官网下载好两个版本不同的jdk(需要登录Oracle账号,没有可以免费注册)下载完

Spring StateMachine实现状态机使用示例详解

《SpringStateMachine实现状态机使用示例详解》本文介绍SpringStateMachine实现状态机的步骤,包括依赖导入、枚举定义、状态转移规则配置、上下文管理及服务调用示例,重点解... 目录什么是状态机使用示例什么是状态机状态机是计算机科学中的​​核心建模工具​​,用于描述对象在其生命

Spring Boot 结合 WxJava 实现文章上传微信公众号草稿箱与群发

《SpringBoot结合WxJava实现文章上传微信公众号草稿箱与群发》本文将详细介绍如何使用SpringBoot框架结合WxJava开发工具包,实现文章上传到微信公众号草稿箱以及群发功能,... 目录一、项目环境准备1.1 开发环境1.2 微信公众号准备二、Spring Boot 项目搭建2.1 创建

Java中Integer128陷阱

《Java中Integer128陷阱》本文主要介绍了Java中Integer与int的区别及装箱拆箱机制,重点指出-128至127范围内的Integer值会复用缓存对象,导致==比较结果为true,下... 目录一、Integer和int的联系1.1 Integer和int的区别1.2 Integer和in

SpringSecurity整合redission序列化问题小结(最新整理)

《SpringSecurity整合redission序列化问题小结(最新整理)》文章详解SpringSecurity整合Redisson时的序列化问题,指出需排除官方Jackson依赖,通过自定义反序... 目录1. 前言2. Redission配置2.1 RedissonProperties2.2 Red

IntelliJ IDEA2025创建SpringBoot项目的实现步骤

《IntelliJIDEA2025创建SpringBoot项目的实现步骤》本文主要介绍了IntelliJIDEA2025创建SpringBoot项目的实现步骤,文中通过示例代码介绍的非常详细,对大家... 目录一、创建 Spring Boot 项目1. 新建项目2. 基础配置3. 选择依赖4. 生成项目5.