20 lines
571 B
C#
20 lines
571 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.RES_SHAREDCUSTOMER")]
|
|
public class RES_SHAREDCUSTOMER
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public string RESID { get; set; }
|
|
public decimal INNERUSERID { get; set; }
|
|
public decimal EID { get; set; }
|
|
public decimal SHAREDINNERUSERID { get; set; }
|
|
public decimal SHAREDEID { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
}
|
|
}
|