1.初始化项目。保险起见bin目录完整提交 2.基于现场代码为调整过的初始项目(此次提交还未解决代码差异问题)

This commit is contained in:
龚记林
2026-08-19 11:14:30 +08:00
parent b820c71956
commit 2b30644d28
382 changed files with 140652 additions and 1 deletions
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HxBusiness
{
public class ResponseModel
{
public ResponseModel()
{
code = -1;
msg = "初始化错误!";
data = "服务器错误!";
}
public int code { get; set; }
public string msg { get; set; }
public object data { get; set; }
}
}