[성현모] DataModel분리, TestResult 페이지/기능 추가

This commit is contained in:
SHM
2025-09-16 09:11:54 +09:00
parent 29c34abcb6
commit a57734308f
20 changed files with 329 additions and 123 deletions

View File

@ -0,0 +1,7 @@
namespace Web.Tra.Model
{
public interface ITestResultModel : IDataModel
{
public long No { get; set; }
}
}