提交子公司客户化修改

This commit is contained in:
2022-12-26 14:34:56 +08:00
parent 5ac9cee30c
commit 3f114efa2f
215 changed files with 83912 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class TokenItem
{
/// <summary>
/// token
/// </summary>
public string Token { get; set; }
/// <summary>
/// 失效时间
/// </summary>
public string ExpiryTime { get; set; }
}
}