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

35 lines
797 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_APPLYVIP")]
public partial class CSVR_APPLYVIP
{
[Key]
public decimal PKID { get; set; }
[StringLength(100)]
public string RESID { get; set; }
public decimal? ISLOCAL { get; set; }
[StringLength(100)]
public string MEMO { get; set; }
public decimal? STATUS { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? UTIME { get; set; }
public decimal? INNERUSERID { get; set; }
public decimal? OPERATORID { get; set; }
[StringLength(20)]
public string PHONE { get; set; }
}
}