ComplianceServer/oldcode/Model/Entity/RES_USERAPPLYMODULE.cs

32 lines
748 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_USERAPPLYMODULE")]
public partial class RES_USERAPPLYMODULE
{
[Key]
public decimal PKID { get; set; }
[StringLength(18)]
public string USERCARDNO { get; set; }
[StringLength(50)]
public string USERNAME { get; set; }
[StringLength(18)]
public string RESID { get; set; }
public decimal? MODULEID { get; set; }
[StringLength(50)]
public string CUSTOMERFROM { get; set; }
public short? ISAUDITED { get; set; }
public DateTime? CTIME { get; set; }
}
}