29 lines
838 B
C#
29 lines
838 B
C#
using System;
|
|
|
|
namespace WX.CRM.Model.DTO
|
|
{
|
|
public class ResSceneView
|
|
{
|
|
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 decimal? Eid { get; set; }
|
|
public decimal InneruserId { get; set; }
|
|
public string UName { get; set; }
|
|
public string GName { get; set; }
|
|
public decimal rn { get; set; }
|
|
}
|
|
|
|
public class ResSceneType
|
|
{
|
|
public decimal SCENETYPE;
|
|
public string SCENETITLE { get; set; }
|
|
}
|
|
}
|