ComplianceServer/oldcode/Model/Entity/CSVR_APPLYPRIMARYNUMBER.cs

31 lines
722 B
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(18)]
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; }
}
}