[성현모] Select기능 추가, ReadUncommitted level 적용
This commit is contained in:
@ -8,6 +8,8 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace HubX.Library.Http.Packet
|
||||
{
|
||||
#region Unique Key
|
||||
//Insert
|
||||
public class Request_InsertUniqueKey
|
||||
{
|
||||
public string Identity { get; set; } = string.Empty;
|
||||
@ -18,10 +20,42 @@ namespace HubX.Library.Http.Packet
|
||||
public string? Data4 { get; set; } = string.Empty;
|
||||
public string? Data5 { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class Response_InsertUniqueKy
|
||||
{
|
||||
public string? Identity { get; set; } = string.Empty;
|
||||
public string? Result { get; set; } = EnumResult.Success.ToString();
|
||||
}
|
||||
|
||||
//Select
|
||||
public class Request_SelectUniqueKey
|
||||
{
|
||||
public string Identity { get; set; } = string.Empty;
|
||||
}
|
||||
public class Response_SelectUniqueKy
|
||||
{
|
||||
public string? Identity { get; set; } = string.Empty;
|
||||
public string? Data1 { get; set; } = string.Empty;
|
||||
public string? Data2 { get; set; } = string.Empty;
|
||||
public string? Data3 { get; set; } = string.Empty;
|
||||
public string? Data4 { get; set; } = string.Empty;
|
||||
public string? Data5 { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
//Update
|
||||
public class Request_UpdateUniqueKey
|
||||
{
|
||||
public string Identity { get; set; } = string.Empty;
|
||||
|
||||
public string? Data1 { get; set; } = string.Empty;
|
||||
public string? Data2 { get; set; } = string.Empty;
|
||||
public string? Data3 { get; set; } = string.Empty;
|
||||
public string? Data4 { get; set; } = string.Empty;
|
||||
public string? Data5 { get; set; } = string.Empty;
|
||||
}
|
||||
public class Response_UpdateUniqueKy
|
||||
{
|
||||
public string? Identity { get; set; } = string.Empty;
|
||||
public string? Result { get; set; } = EnumResult.Success.ToString();
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user