crm.core/code/Crm.Core.Entity/Crm/BAS_NOTIFICATION.cs

37 lines
805 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.Crm
{
[Table("BAS_NOTIFICATION")]
public class BAS_NOTIFICATION
{
public decimal ID { get; set; }
public string? NOTIFICATIONID { get; set; }
public string? NOTIFICATIONVALUE { get; set; }
public decimal? EID { get; set; }
public string? RESID { get; set; }
public string? UMID { get; set; }
public decimal? READ { get; set; }
public string? MESSAGE { get; set; }
public string? TOPIC { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? READTIME { get; set; }
public NotificationType? NOTIFICATIONTYPE { get; set; }
}
}