ComplianceServer/oldcode/Core.Model/Entity/CSVR_BLACKNUMBER.cs

35 lines
843 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("CSVR_BLACKNUMBER")]
public partial class CSVR_BLACKNUMBER
{
[Key]
public int? PKID { get; set; }
[Required]
[StringLength(18)]
public string RESID { get; set; }
[Required]
[StringLength(1)]
public string BLACKTYPE { get; set; }
[StringLength(255)]
public string DeptChannel { get; set; }
[StringLength(500)]
public string REASON { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public string CREATEUSERNAME { get; set; }
[StringLength(255)]
public string ChannelName { get; set; }
}
}