TG.WXCRM.V4/Model/Entity/CSVR_BLACKNUMBER.cs

33 lines
762 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_BLACKNUMBER")]
public partial class CSVR_BLACKNUMBER
{
[Key]
public decimal PKID { get; set; }
[Required]
[StringLength(100)]
public string RESID { get; set; }
[Required]
[StringLength(50)]
public string UMID { get; set; }
[Required]
[StringLength(1)]
public string BLACKTYPE { get; set; }
[Required]
[StringLength(500)]
public string REASON { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSRE { get; set; }
}
}