2025-06-30 19:22:02 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MyCode.Project.Domain.Message.Request.User
|
|
|
|
|
|
{
|
2025-07-01 20:09:17 +08:00
|
|
|
|
public class PostModel1
|
2025-06-30 19:22:02 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2025-07-01 20:09:17 +08:00
|
|
|
|
/// 账套ID
|
2025-06-30 19:22:02 +08:00
|
|
|
|
/// </summary>
|
2025-07-01 20:09:17 +08:00
|
|
|
|
public string DBID { get; set; }
|
|
|
|
|
|
|
2025-06-30 19:22:02 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-07-01 20:09:17 +08:00
|
|
|
|
/// 验证KEY
|
2025-06-30 19:22:02 +08:00
|
|
|
|
/// </summary>
|
2025-07-01 20:09:17 +08:00
|
|
|
|
public string KEY { get; set; }
|
2025-06-30 19:22:02 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-07-01 20:09:17 +08:00
|
|
|
|
/// 加密后的密码
|
2025-06-30 19:22:02 +08:00
|
|
|
|
/// </summary>
|
2025-07-01 20:09:17 +08:00
|
|
|
|
public string HashPassword { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
//是否调度在登录 1=是 0=否
|
|
|
|
|
|
public int IFTaskLogin { get; set; }
|
2025-06-30 19:22:02 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|