Add project files.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Core.Blueprint.Service.Domain.Entities
|
||||
{
|
||||
public class SqlSampleItemEntity
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
public string TestName { get; set; } = string.Empty;
|
||||
public char StatusCode { get; set; } = 'P';
|
||||
public int NumValue { get; set; } = 0;
|
||||
public DateTime CreatedAt { get; set; } = DateTime.Now;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user