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,35 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HxBusiness
{
public class ApiModel
{
/// <summary>
/// 请求url
/// </summary>
public string requestUrl { get; set; }
/// <summary>
/// 离开url
/// </summary>
public string leaveUrl { get; set; }
/// <summary>
/// 通知url
/// </summary>
public string sendUrl { get; set; }
/// <summary>
/// 请求间隔秒数
/// </summary>
public int requestSecond { get; set; }
/// <summary>
/// 请求地标列表
/// </summary>
public string waitRfidList { get; set; }
/// <summary>
/// 离开归还地标列表
/// </summary>
public string leavedRfidList { get; set; }
}
}