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; }
///
/// 根据时间来过滤的
///
public string cdate { get; set; }
///
/// 根据时间来过滤
///
public string cmonth { get; set; }
///
/// 根据时间来过滤
///
public string chours { get; set; }
///
/// 1:普通 2:日汇总
///
public int type { get; set; }
///
/// 序号
///
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 tagInfos { get; set; }//标签组
}
public class TagInfo
{
public string group_name { get; set; }
public string tag_name { get; set; }
public int type { get; set; }
}
}