123
This commit is contained in:
31
MyCode.Project.Domain/Message/Request/User/PostModel.cs
Normal file
31
MyCode.Project.Domain/Message/Request/User/PostModel.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Message.Request.User
|
||||
{
|
||||
public class PostModel1
|
||||
{
|
||||
/// <summary>
|
||||
/// 账套ID
|
||||
/// </summary>
|
||||
public string DBID { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 验证KEY
|
||||
/// </summary>
|
||||
public string KEY { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 加密后的密码
|
||||
/// </summary>
|
||||
public string HashPassword { get; set; }
|
||||
|
||||
//是否调度在登录 1=是 0=否
|
||||
public int IFTaskLogin { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user