[성현모] Scaffold

This commit is contained in:
SHM
2025-10-30 09:38:48 +09:00
parent 690b26d4da
commit 05fb9a64e1
4 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
namespace SystemX.Core.DB;
public partial class tPairKeyStorage
{
public string cPrimaryKey { get; set; } = null!;
public string cSecondaryKey { get; set; } = null!;
public string? cValue1 { get; set; }
public string? cValue2 { get; set; }
public DateTime cDateTime { get; set; }
}