create EnvelopeReport-entity
This commit is contained in:
parent
e6285f13f7
commit
028785a8c9
36
EnvelopeGenerator.Domain/Entities/EnvelopeReport.cs
Normal file
36
EnvelopeGenerator.Domain/Entities/EnvelopeReport.cs
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
#if NETFRAMEWORK
|
||||||
|
using System;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
namespace EnvelopeGenerator.Domain.Entities
|
||||||
|
{
|
||||||
|
[Table("VWSIG_ENVELOPE_REPORT", Schema = "dbo")]
|
||||||
|
public class EnvelopeReport
|
||||||
|
{
|
||||||
|
[Key]
|
||||||
|
[Column("ENVELOPE_ID")]
|
||||||
|
public int EnvelopeId { get; set; }
|
||||||
|
|
||||||
|
// --- HEAD ---
|
||||||
|
[Column("HEAD_UUID")]
|
||||||
|
public string HeadUuid { get; set; }
|
||||||
|
|
||||||
|
[Column("HEAD_TITLE")]
|
||||||
|
public string EnvelopeTitle { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
[Column("HEAD_MESSAGE")]
|
||||||
|
public string HeadMessage { get; set; }
|
||||||
|
|
||||||
|
// --- POSITIONS ---
|
||||||
|
[Column("POS_STATUS")]
|
||||||
|
public int ItemStatus { get; set; }
|
||||||
|
|
||||||
|
[Column("POS_WHEN")]
|
||||||
|
public DateTime? ItemDate { get; set; }
|
||||||
|
|
||||||
|
[Column("POS_WHO")]
|
||||||
|
public string ItemUserReference { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user