ComplianceServer/oldcode/Model/Entity/CSVR_MSGOPENACCOUNT.cs

26 lines
584 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_MSGOPENACCOUNT")]
public partial class CSVR_MSGOPENACCOUNT
{
[Key]
public decimal PKID { get; set; }
public decimal SALESID { get; set; }
[Required]
[StringLength(18)]
public string RESID { get; set; }
public decimal MSGTYPE { get; set; }
public short? ISVIEWED { get; set; }
public DateTime CTIME { get; set; }
}
}