157 lines
4.0 KiB
C#
157 lines
4.0 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Crm.Core.MsgTool.Domain.Dto
|
||
{
|
||
public class AppModel
|
||
{
|
||
}
|
||
|
||
public class EidQueryDto
|
||
{
|
||
public int Eid { get; set; }
|
||
}
|
||
|
||
public class WxWorkModel
|
||
{
|
||
public string? CropId { get; set; }
|
||
public string? CropName { get; set; }
|
||
public string? UserId { get; set; }
|
||
public string? UserName { get; set; }
|
||
public string? Mobile { get; set; }
|
||
public string? Avatar { get; set; }
|
||
}
|
||
public class Exinfo
|
||
{
|
||
public string userid { get; set; }
|
||
public string name { get; set; }
|
||
public List<int> department { get; set; }
|
||
public string position { get; set; }
|
||
public string mobile { get; set; }
|
||
public string gender { get; set; }
|
||
public string email { get; set; }
|
||
public string avatar { get; set; }
|
||
public int status { get; set; }
|
||
public int isleader { get; set; }
|
||
public string qr_code { get; set; }
|
||
public string thumb_avatar { get; set; }
|
||
|
||
}
|
||
|
||
public class UpLoadModel
|
||
{
|
||
/// <summary>
|
||
/// 上传url
|
||
/// </summary>
|
||
public string? url { get; set; }
|
||
|
||
/// <summary>
|
||
/// 头部传Authorization
|
||
/// </summary>
|
||
public string? Authorization { get; set; }
|
||
}
|
||
|
||
public class OutExtuserQueryDto
|
||
{
|
||
public string CropId { get; set; }
|
||
public string UserId { get; set; }
|
||
}
|
||
|
||
public class wwExtuserModel
|
||
{
|
||
public Dictionary<string, List<string>> YearMonthList { get; set; }
|
||
public List<wwGroupTagView> TagList { get; set; }
|
||
public List<wwExtuserView> DataList { get; set; }
|
||
public Dictionary<string, string> customTags { get; set; }
|
||
}
|
||
|
||
public class wwGroupTagView
|
||
{
|
||
public string corpid { get; set; }
|
||
|
||
public string group_id { get; set; }
|
||
|
||
public string group_name { get; set; }
|
||
|
||
public long create_time { get; set; }
|
||
|
||
public int order { get; set; }
|
||
|
||
public string tags { get; set; }
|
||
public List<wwGroupTagInfo> tagNumbers { get; set; }
|
||
}
|
||
|
||
public class wwGroupTagInfo
|
||
{
|
||
public string id { get; set; }
|
||
public string name { get; set; }
|
||
public int order { get; set; }
|
||
}
|
||
|
||
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; }
|
||
}
|
||
|
||
public class UpLoadInfo
|
||
{
|
||
public string? url { get; set; }
|
||
}
|
||
} |