This commit is contained in:
2025-06-11 17:40:00 +08:00
parent 70060d3b0b
commit e1801e0217
16 changed files with 141 additions and 2 deletions

View File

@@ -3,7 +3,6 @@ using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Cysharp.Threading.Tasks;
using InterfaceEntity.Entity.Requests;
using Newtonsoft.Json;
using UnityEngine;
using UnityEngine.Networking;

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 01117cad0b5a3e942bdf3063d67c301f

View File

@@ -0,0 +1,29 @@
namespace Stary.Evo
{
/// <summary>
/// 用户详细信息
/// </summary>
public class RegisterRequest
{
public string userName { get; set; }
public string passWord { get; set; }
public string email { get; set; }
public string phoneNumber { get; set; }
public string res { get; set; }
}
public class LoginRequest
{
public string userName { get; set; }
public string passWord { get; set; }
public string roleType { get; set; }
public string res { get; set; }
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 137fc1fb32d62bf4e9220f60e870027c

View File

@@ -0,0 +1,22 @@
namespace Stary.Evo
{
public struct ResDmainAddRequst
{
public string ProductName { get; set; }
public string DomainName { get; set; }
public string PackageVersion { get; set; }
public string Platform { get; set; }
public string DocumentFileId { get; set; }
}
public struct ResDmainRequst
{
public string ProductName { get; set; }
public string DomainName { get; set; }
public string Platform { get; set; }
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 4371251d7562cbf46869e2ee63b43d51

View File

@@ -0,0 +1,10 @@
namespace Stary.Evo
{
public struct ResultMessageEntity
{
public int code { get; set; }
public string message { get; set; }
public object data { get; set; }
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: b09f078ce65a4054887040ef346b289d

View File

@@ -0,0 +1,28 @@
namespace Stary.Evo
{
public class UserRequest
{
}
public class ScoreRequest
{
/// <summary>
/// 当前的分数
/// </summary>
public int currentScore { get; set; }
/// <summary>
/// 最大的分数
/// </summary>
public int maxScore { get; set; }
/// <summary>
/// 类型
/// </summary>
/// <returns></returns>
public string type { get; set; }
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 3a428b0f418ad164eb68c21015511d8b

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 822c2f63795732943875327b52def5bd

View File

@@ -0,0 +1,13 @@
namespace Stary.Evo
{
public class AuthenticationResponse
{
public string Token { get; set; }
}
public class EncryptResponse
{
public string res { get; set; }
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 707f3409d71c4fc45b8b7065e7c88808

View File

@@ -0,0 +1,22 @@
namespace Stary.Evo
{
public struct ResDmainVersionResponse
{
public string ProductName { get; set; }
public string DomainName { get; set; }
public string Platform { get; set; }
public string PackageVersion { get; set; }
}
public struct ResDmainResponse
{
public string ProductName { get; set; }
public string DomainName { get; set; }
public string Platform { get; set; }
public string PackageVersion { get; set; }
public string DocumentFileId { get; set; }
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: b5b41fb1367ea6f438e1de9a9baf1be1

View File

@@ -1,6 +1,6 @@
{
"name": "com.staryevo.main",
"version": "1.2.8",
"version": "1.2.9",
"displayName": "00.StaryEvo",
"description": "This is an Framework package(后台服务器版本端口9527)",
"unity": "2021.3",