C#语言实例源码系列-身份证验证

news2024/11/23 0:53:33
专栏分享
  • 点击跳转=>Unity3D特效百例
  • 点击跳转=>案例项目实战源码
  • 点击跳转=>游戏脚本-辅助自动化
  • 点击跳转=>Android控件全解手册

👉关于作者

众所周知,人生是一个漫长的流程,不断克服困难,不断反思前进的过程。在这个过程中会产生很多对于人生的质疑和思考,于是我决定将自己的思考,经验和故事全部分享出来,以此寻找共鸣 !!!
专注于Android/Unity和各种游戏开发技巧,以及各种资源分享(网站、工具、素材、源码、游戏等)
有什么需要欢迎私我,交流群让学习不再孤单

在这里插入图片描述

👉实践过程

😜效果

在这里插入图片描述

😜代码

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }
    string strg;//数据库路径
    OleDbConnection conn;//数据连接对象
    OleDbCommand cmd;//OleDbCommand对象
    OleDbDataReader sdr;//OleDbDataReader对象

    private bool CheckCard(string cardId)//创建一个CheckCard方法用于检查身份证号码是否合法
    {
        if (cardId.Length == 18)        //如果身份证号为18位
        {
           return  CheckCard18(cardId);//调用CheckCard18方法验证
        }
        else if (cardId.Length == 15)   //如果身份证号为15位
        {
            return CheckCard15(cardId);//调用CheckCard15方法验证
        }
        else
        {
            return false;
        }
    }

    private bool CheckCard18(string CardId)//CheckCard18方法用于检查18位身份证号码的合法性
    {
        long n = 0;
        bool flag = false;
        if (long.TryParse(CardId.Remove(17), out n) == false || n < Math.Pow(10, 16) || long.TryParse(CardId.Replace('x', '0').Replace('X', '0'), out n) == false)
            return false;//数字验证
        string[] Myaddress =new string[]{ "11","22","35","44","53","12",
            "23","36","45","54","13","31","37","46","61","14","32","41",
            "50","62","15","33","42","51","63","21","34","43","52","64",
            "65","71","81","82","91"};
        for (int kk = 0; kk < Myaddress.Length;kk++ )
        {
            if (Myaddress[kk].ToString() == CardId.Remove(2))
            {
                flag = true;
            }
        }
        if (flag)
        {
            return flag;
        }
        string Mybirth = CardId.Substring(6, 8).Insert(6, "-").Insert(4, "-");
         DateTime Mytime = new DateTime();
        if (DateTime.TryParse(Mybirth, out Mytime) == false)
            return false;//生日验证
        string[] MyVarifyCode = ("1,0,x,9,8,7,6,5,4,3,2").Split(',');
        string[] wi = ("7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2").Split(',');
        char[] ai = CardId.Remove(17).ToCharArray();
        int sum = 0;
        for (int i = 0; i < 17; i++)
            sum += int.Parse(wi[i]) * int.Parse(ai[i].ToString());
        int y = -1;
        Math.DivRem(sum, 11, out y);
        if (MyVarifyCode[y] != CardId.Substring(17, 1).ToLower())
        {
            return false;//校验码验证
        }
        return true;//符合GB11643-1999标准
    }

    private bool CheckCard15(string CardId)
    {
        long n = 0;
        bool flag = false;
        if (long.TryParse(CardId, out n) == false || n < Math.Pow(10, 14))
            return false;//数字验证
        string[] Myaddress = new string[]{ "11","22","35","44","53","12",
            "23","36","45","54","13","31","37","46","61","14","32","41",
            "50","62","15","33","42","51","63","21","34","43","52","64",
            "65","71","81","82","91"};
        for (int kk = 0; kk < Myaddress.Length; kk++)
        {
            if (Myaddress[kk].ToString() == CardId.Remove(2))
            {
                flag = true;
            }
        }
        if (flag)
        {
            return flag;
        }
        string Mybirth = CardId.Substring(6, 6).Insert(4, "-").Insert(2, "-");
        DateTime Mytime = new DateTime();
        if (DateTime.TryParse(Mybirth, out Mytime) == false)
        {
            return false;//生日验证
        }
        return true;//符合15位身份证标准
    }

    private void button1_Click(object sender, EventArgs e)
    {
        if (txtCardID.Text == "")//如果没有输入身份证号码
        {
            return;              //不执行操作
        }
        else
        {
            if (CheckCard(txtCardID.Text.Trim()))//如果通过CheckCard方法验证成功
            {
                this.Height = 237;               //设置窗体高度
                string card=txtCardID.Text.Trim();//获取输入的身份证号码
                if (card.Length == 15)          //如果输入的是15位的身份证号码,需要将其转换成18位
                {
                    int[] w = new int[] { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2, 1 };
                    char[] a = new char[] { '1', '0', 'x', '9', '8', '7', '6', '5', '4', '3', '2' };
                    string newID = "";
                    int s = 0;
                    newID =this.txtCardID.Text.Trim().Insert(6, "19");
                    for (int i = 0; i < 17; i++)
                    {
                         int k = Convert.ToInt32(newID[i]) * w[i];
                         s = s + k;
                    }
                    int h = 0;
                    Math.DivRem(s, 11, out h);
                    newID = newID + a[h];
                    card = newID;               //最后将转换成18位的身份证号码赋值给card
                }
                int addnum =Convert.ToInt32(card.Remove(6));//获取身份证号码中的地址码
                //连接数据库
                conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data source=" + strg);
                conn.Open();//打开数据库
                //查找数据库中是否存在输入的身份证号码中的地址码
                cmd = new OleDbCommand("select count(*) from address where AddNum="+addnum, conn);
                int KK = Convert.ToInt32(cmd.ExecuteScalar());
                if (KK > 0)//如果存在
                {
                    //检索数据库
                    cmd = new OleDbCommand("select * from address where AddNum=" + addnum, conn);
                    //实例化OleDbDataReader对象
                    sdr = cmd.ExecuteReader();
                    sdr.Read();//读取该对象
                    string address = sdr["AddName"].ToString();//获取地址码对应的归属地
                    string birthday = card.Substring(6, 8);//从身份证号码中截取出公民的生日
                    string byear = birthday.Substring(0,4);//获取出生年份
                    string bmonth = birthday.Substring(4,2);//获取出生月份
                    if (bmonth.Substring(0, 1) == "0")//如果月份是以0开头
                    {
                        bmonth = bmonth.Substring(1,1);//去掉0
                    }
                    string bday = birthday.Substring(6,2);//获取出生“日”
                    if (bday.Substring(0, 1) == "0")//如果“日”以0开头
                    {
                        bday = bday.Substring(1, 1);//去掉0
                    }
                    string sex = "";//性别
                    if (txtCardID.Text.Trim().Length == 15)//如果输入的身份证号码是15位
                    {
                        int PP=Convert.ToInt32(txtCardID.Text.Trim().Substring(14,1))%2;//判断最后一位是奇数还是偶数
                        if (PP == 0)//如果是偶数
                        {
                            sex = "女";//说明身份证号码的持有者是女性
                        }
                        else
                        {
                            sex = "男";//如果是奇数则身份证号码的持有者是男性
                        }
                    }
                    if (txtCardID.Text.Trim().Length == 18)//如果输入的身份证号码是18位
                    {
                        int PP = Convert.ToInt32(txtCardID.Text.Trim().Substring(16, 1)) % 2;//判断倒数第二位是奇数还是偶数
                        if (PP == 0)//如果是偶数
                        {
                            sex = "女";//说明身份证号码的持有者是女性
                        }
                        else
                        {
                            sex = "男";//如果是奇数则身份证号码的持有者是男性
                        }
                    }
                    sdr.Close();//关闭OleDbDataReader连接
                    conn.Close();//关闭数据库连接
                    lblAddress.Text = address;//显示身份证持有者的归属地
                    lblbirthday.Text = byear + "年" + bmonth + "月" + bday + "日";//显示身份证持有者的生日
                    lblsex.Text = sex;//显示身份证持有者的性别
                    lblresult.Text = "合法的公民身份证号!";//显示验证结果
                }
                else
                {
                    MessageBox.Show("公民身份证号输入有误!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }
            else
            {
                MessageBox.Show("非法公民身份证号!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }
    }

    private void button2_Click(object sender, EventArgs e)
    {
        txtCardID.Text = "";//清空输入框
        this.Height = 78;   //设置窗体高度位78
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        this.Height = 78;//设置窗体高度
        //获取数据库路径
        strg = Application.StartupPath.ToString();
        strg = strg.Substring(0, strg.LastIndexOf("\\"));
        strg = strg.Substring(0, strg.LastIndexOf("\\"));
        strg += @"\db.mdb";
    }
}
partial class Form1
{
    /// <summary>
    /// 必需的设计器变量。
    /// </summary>
    private System.ComponentModel.IContainer components = null;

    /// <summary>
    /// 清理所有正在使用的资源。
    /// </summary>
    /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
    protected override void Dispose(bool disposing)
    {
        if (disposing && (components != null))
        {
            components.Dispose();
        }
        base.Dispose(disposing);
    }

    #region Windows 窗体设计器生成的代码

    /// <summary>
    /// 设计器支持所需的方法 - 不要
    /// 使用代码编辑器修改此方法的内容。
    /// </summary>
    private void InitializeComponent()
    {
        this.label1 = new System.Windows.Forms.Label();
        this.txtCardID = new System.Windows.Forms.TextBox();
        this.button1 = new System.Windows.Forms.Button();
        this.button2 = new System.Windows.Forms.Button();
        this.label2 = new System.Windows.Forms.Label();
        this.label3 = new System.Windows.Forms.Label();
        this.label4 = new System.Windows.Forms.Label();
        this.label5 = new System.Windows.Forms.Label();
        this.lblAddress = new System.Windows.Forms.Label();
        this.lblbirthday = new System.Windows.Forms.Label();
        this.lblsex = new System.Windows.Forms.Label();
        this.lblresult = new System.Windows.Forms.Label();
        this.SuspendLayout();
        // 
        // label1
        // 
        this.label1.AutoSize = true;
        this.label1.Location = new System.Drawing.Point(13, 13);
        this.label1.Name = "label1";
        this.label1.Size = new System.Drawing.Size(65, 12);
        this.label1.TabIndex = 0;
        this.label1.Text = "身份证号:";
        // 
        // txtCardID
        // 
        this.txtCardID.Location = new System.Drawing.Point(76, 10);
        this.txtCardID.Name = "txtCardID";
        this.txtCardID.Size = new System.Drawing.Size(207, 21);
        this.txtCardID.TabIndex = 1;
        // 
        // button1
        // 
        this.button1.Location = new System.Drawing.Point(289, 9);
        this.button1.Name = "button1";
        this.button1.Size = new System.Drawing.Size(75, 23);
        this.button1.TabIndex = 2;
        this.button1.Text = "开始验证";
        this.button1.UseVisualStyleBackColor = true;
        this.button1.Click += new System.EventHandler(this.button1_Click);
        // 
        // button2
        // 
        this.button2.Location = new System.Drawing.Point(367, 8);
        this.button2.Name = "button2";
        this.button2.Size = new System.Drawing.Size(75, 23);
        this.button2.TabIndex = 3;
        this.button2.Text = "重新验证";
        this.button2.UseVisualStyleBackColor = true;
        this.button2.Click += new System.EventHandler(this.button2_Click);
        // 
        // label2
        // 
        this.label2.AutoSize = true;
        this.label2.Location = new System.Drawing.Point(13, 53);
        this.label2.Name = "label2";
        this.label2.Size = new System.Drawing.Size(65, 12);
        this.label2.TabIndex = 4;
        this.label2.Text = "所属地区:";
        // 
        // label3
        // 
        this.label3.AutoSize = true;
        this.label3.Location = new System.Drawing.Point(37, 90);
        this.label3.Name = "label3";
        this.label3.Size = new System.Drawing.Size(41, 12);
        this.label3.TabIndex = 5;
        this.label3.Text = "生日:";
        // 
        // label4
        // 
        this.label4.AutoSize = true;
        this.label4.Location = new System.Drawing.Point(37, 129);
        this.label4.Name = "label4";
        this.label4.Size = new System.Drawing.Size(41, 12);
        this.label4.TabIndex = 6;
        this.label4.Text = "性别:";
        // 
        // label5
        // 
        this.label5.AutoSize = true;
        this.label5.Location = new System.Drawing.Point(13, 169);
        this.label5.Name = "label5";
        this.label5.Size = new System.Drawing.Size(65, 12);
        this.label5.TabIndex = 7;
        this.label5.Text = "验证结果:";
        // 
        // lblAddress
        // 
        this.lblAddress.AutoSize = true;
        this.lblAddress.Location = new System.Drawing.Point(74, 53);
        this.lblAddress.Name = "lblAddress";
        this.lblAddress.Size = new System.Drawing.Size(0, 12);
        this.lblAddress.TabIndex = 8;
        // 
        // lblbirthday
        // 
        this.lblbirthday.AutoSize = true;
        this.lblbirthday.Location = new System.Drawing.Point(74, 90);
        this.lblbirthday.Name = "lblbirthday";
        this.lblbirthday.Size = new System.Drawing.Size(0, 12);
        this.lblbirthday.TabIndex = 9;
        // 
        // lblsex
        // 
        this.lblsex.AutoSize = true;
        this.lblsex.Location = new System.Drawing.Point(74, 129);
        this.lblsex.Name = "lblsex";
        this.lblsex.Size = new System.Drawing.Size(0, 12);
        this.lblsex.TabIndex = 10;
        // 
        // lblresult
        // 
        this.lblresult.AutoSize = true;
        this.lblresult.Location = new System.Drawing.Point(74, 169);
        this.lblresult.Name = "lblresult";
        this.lblresult.Size = new System.Drawing.Size(0, 12);
        this.lblresult.TabIndex = 11;
        // 
        // Form1
        // 
        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(449, 192);
        this.Controls.Add(this.lblresult);
        this.Controls.Add(this.lblsex);
        this.Controls.Add(this.lblbirthday);
        this.Controls.Add(this.lblAddress);
        this.Controls.Add(this.label5);
        this.Controls.Add(this.label4);
        this.Controls.Add(this.label3);
        this.Controls.Add(this.label2);
        this.Controls.Add(this.button2);
        this.Controls.Add(this.button1);
        this.Controls.Add(this.txtCardID);
        this.Controls.Add(this.label1);
        this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
        this.MaximizeBox = false;
        this.MinimizeBox = false;
        this.Name = "Form1";
        this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
        this.Text = "验证身份证号码";
        this.Load += new System.EventHandler(this.Form1_Load);
        this.ResumeLayout(false);
        this.PerformLayout();

    }

    #endregion

    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.TextBox txtCardID;
    private System.Windows.Forms.Button button1;
    private System.Windows.Forms.Button button2;
    private System.Windows.Forms.Label label2;
    private System.Windows.Forms.Label label3;
    private System.Windows.Forms.Label label4;
    private System.Windows.Forms.Label label5;
    private System.Windows.Forms.Label lblAddress;
    private System.Windows.Forms.Label lblbirthday;
    private System.Windows.Forms.Label lblsex;
    private System.Windows.Forms.Label lblresult;

}

需要的再直接Call我,直接发。

👉其他

📢作者:小空和小芝中的小空
📢转载说明-务必注明来源:https://zhima.blog.csdn.net/
📢这位道友请留步☁️,我观你气度不凡,谈吐间隐隐有王者霸气💚,日后定有一番大作为📝!!!旁边有点赞👍收藏🌟今日传你,点了吧,未来你成功☀️,我分文不取,若不成功⚡️,也好回来找我。

温馨提示点击下方卡片获取更多意想不到的资源。
空名先生

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

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

相关文章

【车载开发系列】UDS诊断---数据传输($0x36)

【车载开发系列】UDS诊断—数据传输&#xff08;$0x36&#xff09; UDS诊断---数据传输&#xff08;$0x36&#xff09;【车载开发系列】UDS诊断---数据传输&#xff08;$0x36&#xff09;一.概念定义二.报文格式1&#xff09;请求报文2&#xff09;肯定响应3&#xff09;否定响…

FL Studio21最新中文公测版下载及新功能介绍

FL Studio水果21现已推出&#xff0c;提供更快、更精确的音频编辑&#xff0c;coco玛奇朵升级后的DAW为用户提供了更多的内容发现和改进的界面。 Image-Line发布了FL Studio 21&#xff0c;称其可以实现更快、更精确的音频编辑&#xff0c;以及对整个DAW的更多控制。 期待已久…

【毕业设计_课程设计】基于SSM的实验室管理系统(源码+论文)

文章目录0 项目说明1 研究目的2 研究方法3 项目使用4 研究结论5 论文目录6 项目源码0 项目说明 基于SSM的实验室管理系统 提示&#xff1a;适合用于课程设计或毕业设计&#xff0c;工作量达标&#xff0c;源码开放 1 研究目的 基于B/S模式的实验室管理系统&#xff0c;它所覆…

Linux命令行笔记-00 综述

文章目录1 Linux命令行简介1.1 Linux命令行的分类1.1.1 根据系统中作用来分类1.1.2 根据对象来分类2 Linux命令行解释器2.1 命令行解释器shell2.1.1 核心程序2.1.2 公用程序shell2.1.3 用户的默认shell2.1.4 shell如何工作2.2 Shell发展历史2.3 shell版本的差异2.3.1 C shell2.…

云原生----什么是云原生

【原文链接】云原生----什么是云原生 文章目录1. 云原生的概念2. 云原生的四要素3. 云原生的关键目标什么是云原生&#xff1f;这里将从云原生的概念、云原生的四要素、云原生关键目标等方面介绍。1. 云原生的概念 云原生应用时面向云而设计的应用&#xff0c;在使用云原生技术…

Metasploit Framework和msf框架

Metasploit Framework ● MSF默认集成与kali linux之中 ● 使用postgresql数据库存储数据 ○ 早期版本需要先启动数据库再启动msf MSF架构 Rex ● 基本功能库&#xff0c;用于完成日常基本任务&#xff0c;无需人工手动编码实现 ● 处理socket连接访问、协议应答&#xff08…

洛谷千题详解 | P1020 [NOIP1999 普及组] 导弹拦截【C++语言】

博主主页&#xff1a;Yu仙笙 专栏地址&#xff1a;洛谷千题详解 目录 题目描述 输入格式 输出格式 输入输出样例 解析&#xff1a; C源码&#xff1a; C源码2&#xff1a; -------------------------------------------------------------------------------------------------…

【(C语言)数据结构奋斗100天】栈和队列

前言 &#x1f3e0;个人主页&#xff1a;泡泡牛奶 &#x1f335;系列专栏&#xff1a;[C语言] 数据结构奋斗100天 本期所介绍的是栈和队列&#xff0c;那么什么是栈呢&#xff0c;什么是队列呢&#xff1f;在知道答案之前&#xff0c;请大家思考一下下列问题&#xff1a; 你如何…

【问答篇】Java 线程篇 面试题(二)

每天进步一点~ (ps: 文章内容及图片出处来自本人公众号~) 01、问&#xff1a;请谈谈你对线程声明周期的6种状态的认识和理解 答&#xff1a;很多地方说线程有5种状态&#xff0c;但实际上是6种状态:NEW、RUNNABLE, BLOCKED、 WAITING、TIMED_WAITING、TERMINATED; 新创建&a…

(附源码)Springboot掌上博客系统 毕业设计 063131

Springboot掌上博客系统的设计与实现 摘 要 掌上博客系统是当今网络的热点&#xff0c;博客技术的出现使得每个人可以零成本、零维护地创建自己的网络媒体&#xff0c;Blog站点所形成的网状结构促成了不同于以往社区的Blog文化&#xff0c;Blog技术缔造了“博客”文化。 本文课…

微服务框架 SpringCloud微服务架构 服务异步通讯 53 MQ 集群 53.1 集群分类 53.2 普通集群

微服务框架 【SpringCloudRabbitMQDockerRedis搜索分布式&#xff0c;系统详解springcloud微服务技术栈课程|黑马程序员Java微服务】 服务异步通讯 文章目录微服务框架服务异步通讯53 MQ 集群53.1 集群分类53.1.1 集群分类53.2 普通集群53.2.1 普通集群53.2.2 搭建普通 集群5…

2022 FIFA World Cup Final

我希望梅西能够捧杯&#xff0c;因为我怕再看见那个眼神&#xff01;写在总决赛开始前 12/18/2022 22:04 在一个周日的晚上收到了邹总发的活动信&#xff0c;我记得还在CSDN问答区在回答问题&#xff0c;突然看见私信的红点&#xff0c;其实看到活动&#xff08;活动链接点击这…

万字长文,彻底搞懂分布式缓存Redis

最近系统性地整理了Redis的知识点&#xff0c;在此和大家做些分享&#xff0c;希望能帮助到大家。 为什么Redis这么受欢迎 时代产物 随着互联网规模的不断扩张&#xff0c;越来越多的企业在技术架构上会采用分布式架构&#xff0c;而且对于系统的吞吐量以及响应速率的要求也…

非零基础自学Golang 第11章 文件操作 11.2 文件基本操作 11.2.3 文件写入 11.2.4 删除文件

非零基础自学Golang 文章目录非零基础自学Golang第11章 文件操作11.2 文件基本操作11.2.3 文件写入11.2.4 删除文件第11章 文件操作 11.2 文件基本操作 11.2.3 文件写入 与之前的文件读取相比&#xff0c;向文件写入内容也有两个接口&#xff0c;分别为Write和WriteAt。 fu…

数据管理篇之元数据

第12章 元数据 1.元数据概述 元数据定义 元数据是关于数据的数据。按照用途可以分为两类&#xff1a; 技术元数据 业务元数据 阿里巴巴常见的技术元数据&#xff1a; 分布式计算系统存储元数据 分布式计算系统运行元数据 数据开发平台中数据同步&#xff0c;计算任务、任务调…

【编译原理】第四章部分课后题答案

第 四 章 课 后 习 题 T 4.1 根据表4.1的语法制导定义&#xff0c;为输入表达式5∗(4∗32)5*(4*32)5∗(4∗32)构造注释分析树。 T 4.2 构造表达式((a∗b)(c))((a*b)(c))((a∗b)(c))的分析树和语法树&#xff1a; &#xff08;a&#xff09;根据表4.3的语法制导定义。 &…

C++中你不知道的namespace和using的用法

目录 引言 一: 冒号作用域 二、名字控制 1 命令空间 2 命令空间的使用 三、 using的指令 1 using的声明 2 using的编译指令 引言 你是不是只认为namespace 和 using 在C中是基本的语法框架&#xff0c;但是却不知道它们的真正用法&#xff0c;看完文章你会对using和name…

计算机毕设Python+Vue校园志愿者服务系统(程序+LW+部署)

项目运行 环境配置&#xff1a; Jdk1.8 Tomcat7.0 Mysql HBuilderX&#xff08;Webstorm也行&#xff09; Eclispe&#xff08;IntelliJ IDEA,Eclispe,MyEclispe,Sts都支持&#xff09;。 项目技术&#xff1a; SSM mybatis Maven Vue 等等组成&#xff0c;B/S模式 M…

软件测试零基础如何快速入门 ?这里有全网最详细的学习资料

目录 前言 一、首先&#xff0c;我们要了解清楚用人部门对初级测试人员的定位&#xff1a; 二、清楚了初级测试人员需要具备的能力 三、找到正确的方向 四、最后需要做的就是储备自己的能力。 一.找本软件测试基础的书 二.写文档 三.执行测试 四.多关注技术博文 五、…

城市管理网站

开发工具(eclipse/idea/vscode等)&#xff1a; 数据库(sqlite/mysql/sqlserver等)&#xff1a; 功能模块(请用文字描述&#xff0c;至少200字)&#xff1a; “模块划分&#xff1a;公告类型&#xff0c;公告信息&#xff0c;城管信息&#xff0c;居民信息&#xff0c;设诉类型&…