123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.QiYeWeChat
- {
-
-
-
-
- public class ApprovalData_Request
- {
-
-
-
- public string? access_token { get; set; }
-
-
-
- public uint starttime { get; set; }
-
-
-
- public uint endtime { get; set; }
-
-
-
- public long? next_spnum { get; set; }
- }
-
-
-
-
- public class ApprovalInfo_Request
- {
-
-
-
- public string? access_token { get; set; }
-
-
-
- public long starttime { get; set; }
-
-
-
- public long endtime { get; set; }
-
-
-
- public string? new_cursor { get; set; }
-
-
-
-
- public int size { get; set; } = 100;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public List<Dic>? filters { get; set; }
- }
- public class Dic
- {
- public string key { get; set; }
- public string value { get; set; }
- }
-
-
-
-
- public class ApprovalDetail_Request
- {
-
-
-
- public string? access_token { get; set; }
-
-
-
- public string sp_no { get; set; }
- }
- public class RobotSendMsg_GroupInfo_Param
- {
- public string msgtype { get; set; } = "markdown";
-
-
-
- public RobotSendMsg_GroupInfo_Content markdown { get; set; }
- }
- public class RobotSendMsg_GroupInfo_Content
- {
- public string content { get; set; }
- }
- public class GroupStatus_CreateChat
- {
-
-
-
- public string name { get; set; }
-
-
-
- public string owner { get; set; }
-
-
-
- public List<string> userlist { get; set; }
-
-
-
- public string chatid { get; set; }
- }
- public class GroupStatus_AppChatSend_Markdown
- {
- public string chatid { get; set; }
- public string msgtype { get; set; }
- public RobotSendMsg_GroupInfo_Content markdown { get; set; }
- }
- public class GroupStatus_AppSend_Markdown
- {
-
-
-
- public string touser { get; set; } = "";
-
-
-
- public string toparty { get; set; } = "";
-
-
-
- public string totag { get; set; } = "";
-
-
-
- public string msgtype { get; set; } = "markdown";
-
-
-
- public int agentid { get; set; } = 1000008;
-
-
-
- public RobotSendMsg_GroupInfo_Content markdown { get; set; }
-
-
-
- public int enable_duplicate_check { get; set; } = 0;
-
-
-
- public int duplicate_check_interval { get; set; } = 1800;
- }
- }
|