22 lines
632 B
C#
22 lines
632 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 DateTime CTIME { get; set; }
|
|
public decimal PICI { get; set; }
|
|
public string RESID { get; set; }
|
|
public decimal? TYPE { get; set; }
|
|
public decimal? SGID { get; set; }
|
|
}
|
|
}
|