最新文章 (全部类别)
.NETCore WebApi阻止接口重复调用(请求并发操作)
VS2022消除编译警告
“SymmetricAlgorithm.Create(string)”已过时:“Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead
SHA256Managed/SHA512Managed已过时:Derived cryptographic types are obsolete. Use the Create method on the base type instead
MD5CryptoServiceProvider已过时:Derived cryptographic types are obsolete. Use the Create method on the base type instead
C#使用HttpClient获取IP地址位置和网络信息
判断IP是否是外网IP、内网IP
C#使用HttpClient获取公网IP
WebRequest.Create(string)已过时:WebRequest, HttpWebRequest, ServicePoint, and WebClient are obsolete. Use HttpClient instead
C#根据第三方提供的IP查询服务获取公网外网IP地址
html/dom/js/javascript开发记录
调试ASP.NETCore Web站点 - 清理IISExpress缓存数据(js,css)
EFCore+Oracle根据不同的Schema连接数据库
主程序集成CSFramework.EF 数据库框架(.NET7版本)
CSFramework.EF数据库框架简介(.NET8+EFCore)
迁移ECS服务器:导致ORACLE监听服务启动不了解决方案
SQLite数据库
VS2022编译报错:Visual Studio 容器工具需要 Docker Desktop
.NET 9 预览版+C#13新功能
EFCore禁用实体跟踪
WebApi开发框架V3.0 (.NETCore+EFCore) 增加AppSettings全局参数类
C#获取应用程序所有依赖的程序集
LINQ Expression 多条件复合条件组合(And/Or)
CSFrameworkV6客户案例 - MHR - 宁德时代制造人力资源系统
CS软件授权注册系统V3 - 发布证书
C/S软件授权注册系统V3.0(Winform+WebApi+.NET8+EFCore版本)
CS软件授权注册系统V3 - 购买方式
CS软件授权注册系统V3 - 试用版下载
CS软件授权注册系统-客户登记(制作证书)
C/S软件授权注册系统V3.0 - 管理员工具
CSFrameworkV6旗舰版开发框架 - 集成软件授权认证系统
CSFramework.Authentication 软件证书管理系统 - 制作软件客户授权证书
CSFramework.Authentication 软件证书管理系统 - MAC地址管理
CSFramework.Authentication 软件授权证书管理系统
Login/Logout接口调用dalUser的Login/Logout方法
C# Newtonsoft.Json.Linq.JObject 转对象
CSFramework.Authentication 软件授权认证系统 - 软件测试报告
C/S架构软件开发平台 - 旗舰版V6.0 - 底层框架迭代开发
C/S架构软件开发平台 - 旗舰版V6.1新功能 - 增加软件授权认证模块
C/S架构软件开发平台 - 旗舰版CSFrameworkV6 Bug修改记录
CS软件授权注册系统V3 - 开发手册 - 软件集成与用户注册
CS软件授权注册系统-模拟MES/ERP用户注册软件
CS软件授权注册系统-发布/部署WebApi服务器(IIS+.NET8+ASP.NETCore)
CS软件授权注册系统-VS2022调试WebApi接口
.NETCore Console控制台程序使用ILogger日志
CS软件授权注册系统-WebApi服务器介绍
ASP.NETCore集成Swagger添加Authorize按钮Bearer授权
CS软件授权注册系统-WebApi服务器配置
.NETCore WebApi发布到IIS服务器无法打开swagger
.NET8/ .NETCore /ASP.NETCore 部署WebApi到IIS服务器需要安装的运行环境
.net敏捷开发,创造卓越

Winform调用WebApi接口实现增删改查CRUD实例源码


  Winform调用WebApi接口实现增删改查CRUD实例源码
下面讲解Winform界面怎样调用WebApi接口实现增、删、改、查(CRUD),下图是CSFramework.WebApi后端开发框架测试程序主界面,以单表数据操作界面演示(Customer:客户管理)为例进行讲解。

Winform调用WebApi接口实现增删改查CRUD实例源码


CRUD是什么?

CRUD是指在做计算处理时的增加(Create)、读取(Retrieve)、更新(Update)和删除(Delete)几个单词的首字母简写。CRUD主要被用在描述软件系统中数据库或者持久层的基本操作功能。



CSFramework.WebApi后端开发框架测试程序主界面:

点【基础资料(Customer,Object Entity)】按钮打开【客户资料管理】管理界面。


贴图图片-Winform调用WebApi接口实现增删改查CRUD实例源码


一、实现新增功能(Create)


贴图图片-Winform调用WebApi接口实现增删改查CRUD实例源码1


新增按钮事件:

C# Code:

//新增客户
private void btnAdd_Click(object sender, EventArgs e)
{
  _Mode
= "Add";
  
  
//创建客户实体对象
  
_Current = new Entity_Customer();
  _Current.CreatedBy
= "admin";
  _Current.CreationDate
= DateTime.Now;
  
  
//绑定主表文本框数据源
  
DoBindingEditorPanel(panel3, _Current);
  
  
//设置按钮状态
  
SetButtonState();
  
  tabControl1.SelectedTab
= tabPage2;
  txtCustomerCode.ReadOnly
= false;
}

//来源:C/S框架网(www.csframework.com) QQ:23404761


新建一条记录,首先要创建实体对象,然后绑定编辑界面文本框架的数据源(显示数据)。


动态绑定资料编辑组件文本框的数据源:

C# Code:

/// <summary>
/// 动态绑定资料编辑组件的数据源
/// </summary>
/// <param name="editorPanel"></param>
/// <param name="dataSource"></param>
private void DoBindingEditorPanel(Control editorPanel, object dataSource)
{
  
string fieldName = "";
  
  
for (int i = 0; i <= editorPanel.Controls.Count - 1; i++)
  {
    
//匹配:txt字段名(属性名)的组件,如:txtCustomerCode, txtCustomerName
    
if (editorPanel.Controls[i].Name.Substring(0, 3) != "txt") continue;
    
    
if (editorPanel.Controls[i] is TextBoxBase)
    {
      TextBoxBase edit
= editorPanel.Controls[i] as TextBoxBase;
      
      fieldName
= edit.Name.Substring(3, edit.Name.Length - 3);
      edit.DataBindings.Clear();
      Binding b
= new Binding("Text", dataSource, fieldName);
      edit.DataBindings.Add(b);
//绑定数据源
      
b.ReadValue();
    }
  }
}



保存按钮事件:

C# Code:

//保存事件
private void btnSave_Click(object sender, EventArgs e)
{
  
//调用业务层保存方法
  
ModelResponse result = new bllCustomer().Post(_Current, _Mode);
  
  
if (result.Code == 0)
  {
    
//刷新缓存
    
if (dataGridView1.DataSource == null)
    {
      List
<Entity_Customer> list = new List<Entity_Customer>();
      list.Add(_Current);
      dataGridView1.DataSource
= list;
    }
    
else
    {
      
if (_Mode == "Add")
      {
        List
<Entity_Customer> list = dataGridView1.DataSource as List<Entity_Customer>;
        list.Add(_Current);
        dataGridView1.DataSource
= null;
        dataGridView1.DataSource
= list;
        
        dataGridView1.Rows[dataGridView1.Rows.Count
- 1].Selected = true;
        dataGridView1.CurrentCell
= dataGridView1[0, dataGridView1.Rows.Count - 1];
      }
      
if (_Mode == "Edit")
      {
        Entity_Customer customer
= dataGridView1.SelectedCells[0].OwningRow.DataBoundItem as Entity_Customer;
        CSFramework.WebApi.Core.WebApiDataConverter.CopyObject(_Current, customer);
      }
    }
    
    _Mode
= "View";
    SetButtonState();
    MessageBox.Show(
"保存成功!");
  }
  
else
  {
    MessageBox.Show(
"保存失败!\r\n" + result.Message);
  }
}

//来源:C/S框架网(www.csframework.com) QQ:23404761



提交资料,调用WebApi接口:


C# Code:


/// <summary>
/// 保存数据
/// </summary>
/// <param name="model"></param>
/// <param name="mode"></param>
/// <returns></returns>
internal ModelResponse Post(Entity_Customer model, string mode)
{
  
string data = JsonConvert.SerializeObject(model);
  ModelRequestAction request
= ModelExample.GetRequestAction("admin", "", "WebApi_TestDB", 800001, mode, data, false);
  
  
string result = WebApiTools.Post(_URL, JsonConvert.SerializeObject(request, JsonSettings.Current), HttpContentType.Application_JSON);
  ModelResponse response
= JsonConvert.DeserializeObject<ModelResponse>(result);
  
return response;
}

//来源:C/S框架网(www.csframework.com) QQ:23404761




二、实现删除功能(Delete)


首先在表格中选择一条记录,点【删除】按钮。

C# Code:

//删除按钮事件
private void btnDelete_Click(object sender, EventArgs e)
{
  
if (dataGridView1.RowCount <= 0) return;
  
  Entity_Customer customer
= dataGridView1.SelectedCells[0].OwningRow.DataBoundItem as Entity_Customer;
  
  
//调用接口删除记录
  
bool ok = new bllCustomer().Delete(customer.CustomerCode);
  
  
if (ok)
  {
    List
<Entity_Customer> data = (dataGridView1.DataSource as List<Entity_Customer>);
    data.Remove(customer);
    dataGridView1.DataSource
= null;
    dataGridView1.DataSource
= data;
    
    
//显示下一条记录
    
if (tabControl1.SelectedIndex == 1 && dataGridView1.Rows.Count > 0)
    btnView_Click(btnView,
new EventArgs());
    
    MessageBox.Show(
"删除成功");
  }
}

//来源:C/S框架网(www.csframework.com) QQ:23404761




C# Code:

/// <summary>
/// 删除数据,调用WebApi接口
/// </summary>
/// <param name="PONO"></param>
/// <returns></returns>
internal bool Delete(string customerCode)
{
  ModelRequestAction request
= ModelExample.GetRequestAction("admin", "", "WebApi_TestDB", 800001, "Delete", PONO, false);
  
string result = WebApiTools.Post(_URL, JsonConvert.SerializeObject(request, JsonSettings.Current), HttpContentType.Application_JSON);
  ModelResponse response
= JsonConvert.DeserializeObject<ModelResponse>(result);
  
return response.Code == 0;
}

//来源:C/S框架网(www.csframework.com) QQ:23404761




三、实现修改功能(Update)


修改一条记录,首先要获取当前记录的数据并转换为实体对象,然后在界面显示数据(绑定对象的数据源)。


C# Code:

//查看详情按钮事件
private void btnView_Click(object sender, EventArgs e)
{
  
if (dataGridView1.RowCount <= 0) return;
  
  _Mode
= "View";
  
  Entity_Customer customer
= dataGridView1.SelectedCells[0].OwningRow.DataBoundItem as Entity_Customer;
  
  _Current
= new bllCustomer().GetDataByKey(customer.CustomerCode);
  
  
//绑定主表文本框数据源
  
DoBindingEditorPanel(panel3, _Current);
  
  SetButtonState();
  tabControl1.SelectedTab
= tabPage2;
}

//来源:C/S框架网(www.csframework.com) QQ:23404761



根据主键获取客户资料:


C# Code:

/// <summary>
/// 获取客户资料
/// </summary>
/// <param name="customerCode"></param>
/// <returns></returns>
public Entity_Customer GetDataByKey(string customerCode)
{
  ModelRequestAction request
= ModelExample.GetRequestAction("admin", "", "WebApi_TestDB", 800001, "View", customerCode, false);
  
  
string result = WebApiTools.Post(_URL, JsonConvert.SerializeObject(request, JsonSettings.Current), HttpContentType.Application_JSON);
  ModelResponse response
= JsonConvert.DeserializeObject<ModelResponse>(result);
  
if (response.Code == 0)
  
return JsonConvert.DeserializeObject<Entity_Customer>(response.Data);
  
else
  
return null;
}

//来源:C/S框架网(www.csframework.com) QQ:23404761





四、实现查询功能 (Retrieve)


查询按钮事件:


C# Code:

//查询客户资料
private void btnQuery_Click(object sender, EventArgs e)
{
  
//查询参数 
  
 dynamic queryParam = new
  {
    CustomerCode 
= txt_CustomerCode.Text,
    NativeName 
= txt_NativeName.Text
    };
    
    dataGridView1.AutoGenerateColumns 
= false;
    dataGridView1.DataSource 
= new bllCustomer().Query(queryParam);
    
    
if (dataGridView1.DataSource == null) MessageBox.Show("查询资料失败!");
  }
  
  
//来源:C/S框架网(www.csframework.com) QQ:23404761



BLL.Query方法:


C# Code:

/// <summary>
/// 查询客户资料
/// </summary>
/// <param name="paramObject">查询参数,动态对象模型</param>
/// <returns></returns>
public List<Entity_Customer> Query(dynamic paramObject)
{
  
string dataJson = JsonConvert.SerializeObject(paramObject, JsonSettings.Current);
  
  
//创建WebApi接口请求对象
  
 ModelRequestAction request = ModelExample.GetRequestAction("admin""""WebApi_TestDB"800001"Query", dataJson, false);
  
  
//提交,POST
  
 string result = WebApiTools.Post(_URL, JsonConvert.SerializeObject(request, JsonSettings.Current), HttpContentType.Application_JSON);
  ModelResponse response 
= JsonConvert.DeserializeObject<ModelResponse>(result);
  
if (response.Code == 0)
  
return JsonConvert.DeserializeObject<List<Entity_Customer>>(response.Data);
  
else
  
return null;
}





创建WebApi接口请求对象:


C# Code:

/// <summary>
/// 创建WebApi接口请求对象
/// </summary>
/// <param name="userID">用户账号,对应用户表的Account字段</param>
/// <param name="token">令牌,登录成功后自动分配</param>
/// <param name="actionID">接口编号、功能编号</param>
/// <param name="op">具体操作,如:Add/Delete/Edit/Query</param>
/// <param name="data">本次操作数据,如Op=Query,Data可以是查询条件</param>
/// <param name="dataEncrypt">数据是否加密</param>
/// <returns></returns>
public static ModelRequestAction GetRequestAction(string userID, string token, string dbid, intactionID, string op, string data, bool dataEncrypt = true)
{
  
//Request.Data数据对象
  
 ModelRequestClientData M = new ModelRequestClientData();
  M.UserID 
= userID;
  M.Token 
= token;
  M.DBID 
= dbid;
  
  
string clientData = JsonConvert.SerializeObject(M, JsonSettings.Current);
  
  
//Request请求主体对象
  
 ModelRequestAction mr = new ModelRequestAction();
  mr.Timestamp 
= DateTime.Now.ToString("yyyyMMddHHmmssfff");
  mr.Operation 
= op;
  mr.Action 
= actionID;
  mr.ApiKey 
= PrivateData.apikey;//公钥
  
 mr.Data = dataEncrypt ? CryptoHelper.DESEncrypt(data, PrivateData.DES_Key, PrivateData.DES_iv) : data;
  mr.Sign 
= CryptoHelper.ToMD5(mr.ApiKey + mr.Data + PrivateData.secret + mr.Timestamp);//Sign数字签名
  
 mr.DataIsEncrypted = dataEncrypt;
  mr.ClientData 
= clientData;
  
  
return mr;
}




WebApi服务端实现:

实现命令层,Cmd_Test_Customer:

贴图图片-Winform调用WebApi接口实现增删改查CRUD实例源码2


Cmd_Test_Customer.Execute执行方法:

C# Code:

/// <summary>
/// 执行命令
/// </summary>
/// <returns></returns>
public override IUserResponse Execute()
{
  
//新增
  
if (_UserRequest.Operation == CommandOperation.Add.ToString())
  {
    Entity_Customer customer
= _UserRequest.GetDataObject<Entity_Customer>();
    
    DataTable dtTmp
= _DAL.GetDataByKey("-");
    WebApiDataConverter.AddObject2Table(customer, dtTmp);
    
    
bool ok = _DAL.Update(dtTmp);
    
return new ModelResponse { Code = ok ? 0 : -1, Message = "操作" + (ok ? "成功" : "失败") };
  }
  
  
//删除
  
if (_UserRequest.Operation == CommandOperation.Delete.ToString())
  {
    
bool ok = _DAL.Delete(_UserRequest.Data);
    
return new ModelResponse { Code = ok ? 0 : -1, Message = "操作" + (ok ? "成功" : "失败") };
  }
  
  
//修改
  
if (_UserRequest.Operation == CommandOperation.Edit.ToString())
  {
    Entity_Customer customer
= _UserRequest.GetDataObject<Entity_Customer>();
    
    DataTable dtTmp
= _DAL.GetDataByKey("-");
    WebApiDataConverter.AddObject2Table(customer, dtTmp);
    dtTmp.AcceptChanges();
    dtTmp.Rows[
0].SetModified();
    
    
bool ok = _DAL.Update(dtTmp);
    
return new ModelResponse { Code = ok ? 0 : -1, Message = "操作" + (ok ? "成功" : "失败") };
  }
  
  
//查询
  
if (_UserRequest.Operation == CommandOperation.Query.ToString())
  {
    dynamic data
= JsonConvert.DeserializeObject<dynamic>(_UserRequest.Data);//测试动态对象
    
List<Entity_Customer> list = _DAL.Query(data);
    
    
return new ModelResponse
    {
      Code
= 0,
      Message
= "操作成功",
      Data
= JsonConvert.SerializeObject(list)
      };
    }
    
    
//查询-根据主键查询一条记录
    
if (_UserRequest.Operation == "GetCustomer")
    {
      List
<Entity_Customer> list = _DAL.QueryByKey(_UserRequest.Data);
      
      
return new ModelResponse
      {
        Code
= 0,
        Message
= "操作成功",
        Data
= list.Count > 0 ? JsonConvert.SerializeObject(list) : ""
        };
      }
      
      
//根据主键值获取详情
      
if (EqualsOP(_UserRequest.Operation, CommandOperation.View))//GetDataByKey
      
{
      Entity_Customer customer
= _DAL.Get(_UserRequest.Data);
      
return new ModelResponse
      {
        Code
= 0,
        Message
= "操作成功",
        Data
= JsonConvert.SerializeObject(customer)
        };
      }
      
      
return new ModelResponse
      {
        Code
= ErrorCodes.InterfaceIdInvalide,
        Message
= ErrorCodes.InterfaceIdInvalide_Msg
        };
      }
      
      
//来源:C/S框架网(www.csframework.com) QQ:23404761



数据访问层:

C# Code:

/// <summary>
/// 客户管理,数据层
/// </summary>
public class dalCustomer : dalBaseDataDict
{
  
public dalCustomer(IUserRequestClientLogin loginer)
  {
    
if (loginer != null)
    _Database
= DatabaseProvider.GetDatabase(loginer.DBID);
    
else
    _Database
= DatabaseProvider.GetDatabase("WebApi_TestDB");
    
    
this.ORM = typeof(Entity_Customer);
  }
  
  
public override DataTable GetSummaryData()
  {
    
string sql = "SELECT * FROM tb_Customer ORDER BY CreationDate DESC";
    
return _Database.GetTable(sql, _TableName);
  }
  
  
protected override IGenerateSqlCommand CreateSqlGenerator(string tableName)
  {
    Type ORM
= null;
    
    
if (tableName == Entity_Customer.__TableName) ORM = typeof(Entity_Customer);
    
    
if (ORM == null) throw new Exception(tableName + "表没有ORM模型!");
    
    
return new GenerateSqlCmdByObjectClass(_Database, ORM);
  }
  
  
public List<Entity_Customer> Query(dynamic data)
  {
    
string sql = "SELECT * FROM dbo.tb_Customer WHERE 1=1";
    
if (data.CustomerCode.ToString() != "") sql += " AND CustomerCode LIKE '%" + data.CustomerCode + "%'";
    
if (data.NativeName.ToString() != "") sql += " AND NativeName LIKE '%" + data.NativeName + "%'";
    
    List
<Entity_Customer> list = _Database.ExecuteReader<Entity_Customer>(sql, row => WebApiDataConverter.Convert2Object<Entity_Customer>(row));
    
return list;
  }
  
  
public List<Entity_Customer> QueryByKey(string key)
  {
    
string sql = "SELECT * FROM dbo.tb_Customer WHERE CustomerCode ='" + key + "'";
    
    List
<Entity_Customer> list = _Database.ExecuteReader<Entity_Customer>(sql, row => WebApiDataConverter.Convert2Object<Entity_Customer>(row));
    
return list;
  }
  
  
public Entity_Customer Get(string customerCode)
  {
    
string sql = "SELECT * FROM dbo.tb_Customer WHERE CustomerCode='" + customerCode + "'";
    Entity_Customer customer
= _Database.ExecuteReader<Entity_Customer>(sql);
    
return customer;
  }
}

//来源:C/S框架网(www.csframework.com) QQ:23404761



CSFramework.WebApi后端开发框架测试程序,VS2017解决方案完整版:


贴图图片-Winform调用WebApi接口实现增删改查CRUD实例源码3


<本文完>




.NET WebApi开发框架|MVC框架|后端框架|服务端框架-标准版V1.0

适用开发 适用开发:快速构建支持多种客户端的服务端程序,支持APP、B/S、C/S跨平台移动终端等。
运行平台 运行平台:Windows + .NET Framework 4.5
开发工具 开发工具:Visual Studio 2015+,C#语言
数据库 数据库:Microsoft SQLServer 2008R2+(支持多数据库:Oracle/MySql)

WebApi服务端开发框架




扫一扫加微信:
 



版权声明:本文为开发框架文库发布内容,转载请附上原文出处连接
C/S框架网
上一篇:C# 下载Web网页指定URL图片并转换为Base64String格式
下一篇:C#权限管理框架介绍|商业开源C/S系统快速开发框架权限系统设计
评论列表

发表评论

评论内容
昵称:
关联文章

Winform调用WebApi接口实现增删CRUD实例
C# 数据窗体实现增删(CRUD)下载(原)
CSFramework.WebApi开发框架模拟Web用户端登录、调用WebApi接口增删数据
Winform增删基础框架|C/S框架网
C# Winform增删快速开发框架|C/S框架网
表单上实现增删,除了生成的BLL,DAL和ORM表,还需要处理什么?
C#开发的MDI架构+Access数据库应用程序(增删)
C/S客户端Winform窗体调用WebApi接口(C# 实例)
增删打印审核锁定 数据操作常用图标 32X32
新增的基础资料窗体,Toolbar上没有增删按钮?
Demo调用WebApi接口 - CSFramework.WebApi后端开发框架
Web端使用VUE调用WebApi接口实现用户登录及采用Token方式数据交互
Winform三层架构教程,CS三层结构图及实例讲解
C#.NET 后端WebApi接口搭建教程,WebApi接口开发实例
C#.Net WCF实例详解及下载
基于Web前端用户调用CSFramework.WebApi服务端登录登出接口实现
平台建立WCF服务操作指引、三层+桥接接口实现
Web开发框架-VUE使用Axios调用后台WebAPI接口
CSFramework.WebApi后端框架提供两种接口调用方式
WebApi NETCore框架 - APIProviderFactory 调用WebApi接口

热门标签
软件著作权登记证书 .NET .NET Reactor .NET5 .NET6 .NET7 .NET8 .NET9 .NETFramework APP AspNetCore AuthV3 Auth-软件授权注册系统 Axios B/S B/S开发框架 B/S框架 BSFramework Bug Bug记录 C#加密解密 C#源码 C/S CHATGPT CMS系统 CodeGenerator CSFramework.DB CSFramework.EF CSFramework.License CSFrameworkV1学习版 CSFrameworkV2标准版 CSFrameworkV3高级版 CSFrameworkV4企业版 CSFrameworkV5旗舰版 CSFrameworkV6.0 CSFrameworkV6.1 CSFrameworkV6旗舰版 DAL数据访问层 Database datalock DbFramework Demo教学 Demo实例 Demo下载 DevExpress教程 Docker Desktop DOM ECS服务器 EFCore EF框架 Element-UI EntityFramework ERP ES6 Excel FastReport GIT HR IDatabase IIS JavaScript LINQ MES MiniFramework MIS MySql NavBarControl NETCore Node.JS NPM OMS Oracle资料 ORM PaaS POS Promise API PSD RedGet Redis RSA SAP Schema SEO SEO文章 SQL SQLConnector SQLite SqlServer Swagger TMS系统 Token令牌 VS2022 VSCode VS升级 VUE WCF WebApi WebApi NETCore WebApi框架 WEB开发框架 Windows服务 Winform 开发框架 Winform 开发平台 WinFramework Workflow工作流 Workflow流程引擎 XtraReport 安装环境 版本区别 报表 备份还原 踩坑日记 操作手册 达梦数据库 代码生成器 迭代开发记录 功能介绍 国际化 基础资料窗体 架构设计 角色权限 开发sce 开发工具 开发技巧 开发教程 开发框架 开发平台 开发指南 客户案例 快速搭站系统 快速开发平台 框架升级 毛衫行业ERP 秘钥 密钥 权限设计 软件报价 软件测试报告 软件加壳 软件简介 软件开发框架 软件开发平台 软件开发文档 软件授权 软件授权注册系统 软件体系架构 软件下载 软件著作权登记证书 软著证书 三层架构 设计模式 生成代码 实用小技巧 视频下载 收钱音箱 数据锁 数据同步 微信小程序 未解决问题 文档下载 喜鹊ERP 喜鹊软件 系统对接 详细设计说明书 新功能 信创 行政区域数据库 需求分析 疑难杂症 蝇量级框架 蝇量框架 用户管理 用户开发手册 用户控件 在线支付 纸箱ERP 智能语音收款机 自定义窗体 自定义组件 自动升级程序
联系我们
联系电话:13923396219(微信同号)
电子邮箱:23404761@qq.com
站长微信二维码
微信二维码