123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- 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; }
- }
- }
|