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

49 lines
1.1 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_APPLYPRIMARYNUMBER")]
public partial class CSVR_APPLYPRIMARYNUMBER
{
[Key]
public decimal PKID { get; set; }
[Required]
[StringLength(100)]
public string RESID { get; set; }
[StringLength(100)]
public string MEMO { get; set; }
public decimal CREATEUSER { get; set; }
public DateTime CTIME { get; set; }
public decimal CHECKSTATUS { get; set; }
public decimal? CHECKUSER { get; set; }
public DateTime? CHECKTIME { get; set; }
}
public partial class CSVR_APPLYPRIMARYNUMBERView
{
public decimal PKID { get; set; }
public string RESID { get; set; }
public string MEMO { get; set; }
public decimal CREATEUSER { get; set; }
public DateTime CTIME { get; set; }
public decimal CHECKSTATUS { get; set; }
public decimal? CHECKUSER { get; set; }
public DateTime? CHECKTIME { get; set; }
}
}