一期项目框架搭建

This commit is contained in:
“hsc”
2026-08-27 17:10:56 +08:00
parent 9b852e5c95
commit 03d46fb473
97 changed files with 1222 additions and 14 deletions
@@ -0,0 +1,10 @@
namespace Service.Interface
{
/// <summary>
/// 设备台账 服务接口
/// </summary>
public interface IEquipmentService
{
// TODO: 定义 设备台账 相关方法
}
}
+10
View File
@@ -0,0 +1,10 @@
namespace Service.Interface
{
/// <summary>
/// 二维码 服务接口
/// </summary>
public interface IQrCodeService
{
// TODO: 定义 二维码 相关方法
}
}