wwservice/model/viewmodel/wwExtuserView.cs

70 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace model.viewmodel
{
public class wwExtuserView
{
public string userid { get; set; }
public string extuserid { get; set; }
public string corpid { get; set; }
public string nickname { get; set; }
public string remark { get; set; }
public long createtime { get; set; }
public DateTime createtime2 { get; set; }
public string thumb_avatar { get; set; }
/// <summary>
/// 根据时间来过滤的
/// </summary>
public string cdate { get; set; }
/// <summary>
/// 根据时间来过滤
/// </summary>
public string cmonth { get; set; }
/// <summary>
/// 根据时间来过滤
/// </summary>
public string chours { get; set; }
/// <summary>
/// 1普通 2日汇总
/// </summary>
public int type { get; set; }
/// <summary>
/// 序号
/// </summary>
public int xuhao { get; set; }
public string description { get; set; }
public string tags_type1 { get; set; }
public string tags_type2 { get; set; }
public string remark_corp_name { get; set; }
public int add_type { get; set; }
public int add_way { get; set; }
public bool deleted { get; set; }
public List<TagInfo> tagInfos { get; set; }//标签组
}
public class TagInfo
{
public string group_name { get; set; }
public string tag_name { get; set; }
public int type { get; set; }
}
}