TG.WXCRM.V4/Model/Entity/RES_ALLCOTE_USER.cs

24 lines
721 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.RES_ALLCOTE_USER")]
public class RES_ALLCOTE_USER
{
[Key]
public decimal ID { get; set; }
public decimal INNERUSERID { get; set; }
public decimal EID { get; set; }
public decimal NUM { get; set; }
public decimal EXENUM { get; set; }
public DateTime CTIME { get; set; }
public decimal PICI { get; set; }
public string RESID { get; set; }
public decimal? TYPE { get; set; }
public decimal? SGID { get; set; }
public decimal? DEPTID { get; set; }
}
}