This commit is contained in:
@@ -129,6 +129,7 @@ namespace AyaNova.Models
|
||||
|
||||
public virtual DbSet<CustomerNotifySubscription> CustomerNotifySubscription { get; set; }
|
||||
public virtual DbSet<CustomerNotifyEvent> CustomerNotifyEvent { get; set; }
|
||||
public virtual DbSet<CustomerNotifyDeliveryLog> CustomerNotifyDeliveryLog { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
41
server/AyaNova/models/CustomerNotifyDeliveryLog.cs
Normal file
41
server/AyaNova/models/CustomerNotifyDeliveryLog.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace AyaNova.Models
|
||||
{
|
||||
//This model holds the Customer notification deliveries that have been attempted in the past 90 days (cleaned out by corenotifysweeper)
|
||||
//it is used for verification / troubleshooting purposes from the OPS log
|
||||
//and also used as a circuit breaker by the corejobnotify to ensure users are not spammed with identical messages
|
||||
|
||||
public class CustomerNotifyDeliveryLog
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
|
||||
[Required]
|
||||
public DateTime Processed { get; set; }
|
||||
|
||||
public long ObjectId { get; set; }
|
||||
|
||||
[Required]
|
||||
public long CustomerNotifySubscriptionId { get; set; }
|
||||
|
||||
[Required]
|
||||
public bool Fail { get; set; }
|
||||
public string Error { get; set; }
|
||||
|
||||
|
||||
public CustomerNotifyDeliveryLog()
|
||||
{
|
||||
Processed = DateTime.UtcNow;
|
||||
Fail = false;
|
||||
ObjectId = 0;
|
||||
}
|
||||
|
||||
//linked entity
|
||||
public CustomerNotifySubscription CustomerNotifySubscription { get; set; }
|
||||
|
||||
}//eoc
|
||||
|
||||
}//eons
|
||||
@@ -17,23 +17,17 @@ namespace AyaNova.Models
|
||||
public long Id { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
|
||||
//public AyaType NotifyType { get; set; }
|
||||
//public long CustomerNotifySubscriptionId {get;set;}
|
||||
|
||||
[Required]
|
||||
public DateTime Processed { get; set; }
|
||||
//public AyaType AyaType { get; set; }
|
||||
|
||||
public long ObjectId { get; set; }
|
||||
// [Required]
|
||||
//public NotifyEventType EventType { get; set; }
|
||||
|
||||
[Required]
|
||||
public long NotifySubscriptionId { get; set; }
|
||||
|
||||
// [Required]
|
||||
// public long IdValue { get; set; }
|
||||
//[Required]
|
||||
// public decimal DecValue { get; set; }
|
||||
// [Required]
|
||||
// public long UserId { get; set; }
|
||||
// [Required]
|
||||
// public NotifyDeliveryMethod DeliveryMethod { get; set; }
|
||||
|
||||
[Required]
|
||||
public bool Fail { get; set; }
|
||||
public string Error { get; set; }
|
||||
@@ -43,10 +37,6 @@ namespace AyaNova.Models
|
||||
{
|
||||
Processed = DateTime.UtcNow;
|
||||
Fail = false;
|
||||
|
||||
// IdValue = 0;
|
||||
// DecValue = 0;
|
||||
// AyaType = AyaType.NoType;
|
||||
ObjectId = 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user