namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.RES_MOBILEQUERYLOG")] public partial class RES_MOBILEQUERYLOG { [Key] public decimal PKID { get; set; } public decimal? INNERUSERID { get; set; } [StringLength(50)] public string RESID { get; set; } public DateTime? CTIME { get; set; } [StringLength(50)] public string IP { get; set; } } }