123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.QiYeWeChat
- {
-
-
-
-
- public class Checkin_MonthData_Request
- {
-
-
-
- public string? access_token { get; set; }
-
-
-
- public uint starttime { get; set; }
-
-
-
- public uint endtime { get; set; }
-
-
-
-
-
-
- public List<string>? useridlist { get; set; }
- }
- }
|