添加项目文件。
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
[Table("KeyInstance")]
|
||||
public class KeyInstance : Entity, IAuditAdd, IAuditUpdate
|
||||
{
|
||||
|
||||
public string TpCode { get; set; }
|
||||
public Guid SeriesId { get; set; }
|
||||
public Guid InstanceId { get; set; }
|
||||
public Guid CreateUserId { get; set; }
|
||||
public DateTime CreateTime { get; set; } = DateTime.Now;
|
||||
public Guid UpdateUserId { get; set; }
|
||||
public DateTime UpdateTime { get; set; } = DateTime.Now;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user