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