ComplianceServer/oldcode/Model/Entity/RES_SCENE.cs

30 lines
991 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.RES_SCENE")]
public class RES_SCENE
{
[Key]
public decimal ID { get; set; }
public string MOBILE { get; set; }
public string RESID { get; set; }
public string APPID { get; set; }
public string APPUSERID { get; set; }
public string HEADURL { get; set; }
public string NICKNAME { get; set; }
public string SCENETITLE { get; set; }
public decimal SCENETYPE { get; set; }
public DateTime JOINTIME { get; set; }
public decimal? ONLINETIME { get; set; }
public DateTime CTIME { get; set; }
public decimal? CH { get; set; }
public string DEPTCODE { get; set; }
public string UNIONID { get; set; }
public decimal? EID { get; set; }
public decimal? INNERUSERID { get; set; }
}
}