[feature] python兼容层基本完成

This commit is contained in:
lichx
2024-11-03 11:21:47 +08:00
parent d33ff74a51
commit 03edc76960
21 changed files with 488 additions and 15 deletions
@@ -0,0 +1,8 @@
namespace SiteManagementSystem_SoftwareEngineering_.Interface
{
public interface IFieldService
{
public void AddField(string name, string value);
public void RentField();
}
}