1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.QiYeWeChat
- {
-
-
-
-
- public class CheckInData_Request
- {
-
-
-
- public string access_token { get; set; }
-
-
-
- public int opencheckindatatype { get; set; }
-
-
-
- public long starttime { get; set; }
-
-
-
- public long endtime { get; set; }
-
-
-
- public List<string> useridlist { get; set; }
- }
- }
|