32 lines
750 B
C#
32 lines
750 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(100)]
|
|
public string USERCARDNO { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string USERNAME { get; set; }
|
|
|
|
[StringLength(100)]
|
|
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; }
|
|
}
|
|
}
|