28 lines
879 B
C#
28 lines
879 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("Res_Scene")]
|
|
public class Res_Scene
|
|
{
|
|
[Key]
|
|
public int 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 int SceneType { get; set; }
|
|
public DateTime JoinTime { get; set; }
|
|
public int? OnlineTime { get; set; }
|
|
public DateTime CTime { get; set; }
|
|
public int? Ch { get; set; }
|
|
public string DeptCode { get; set; }
|
|
public string UnionId { get; set; }
|
|
}
|
|
}
|