26 lines
622 B
C#
26 lines
622 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.BAS_INNERUSERINFORMATIONTIPS")]
|
|
public partial class BAS_INNERUSERINFORMATIONTIPS
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string GROUPNAME { get; set; }
|
|
|
|
public decimal? EID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string TRADECODE { get; set; }
|
|
|
|
public decimal? INFORMATIONTYPE { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
}
|