123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.QiYeWeChat
- {
-
-
-
- public class CheckInDataView : ResponseBase
- {
- public List<CheckInDataInfo> checkindata { get; set; }
- }
- public class CheckInDataInfo
- {
-
-
-
- public string userid { get; set; }
-
-
-
- public string groupname { get; set; }
-
-
-
- public string checkin_type { get; set; }
-
-
-
- public string exception_type { get; set; }
-
-
-
- public long checkin_time { get; set; }
-
-
-
- public DateTime checkin_time_dt {
- get
- {
- return new DateTime(checkin_time * 10000000 + 621355968000000000L).ToLocalTime();
- }
- }
-
-
-
- public string location_title { get; set; }
-
-
-
- public string location_detail { get; set; }
-
-
-
- public string wifiname { get; set; }
-
-
-
- public string notes { get; set; }
-
-
-
- public string wifimac { get; set; }
-
-
-
- public List<string> mediaids { get; set; }
-
-
-
- public long lat { get; set; }
-
-
-
- public long lng { get; set; }
-
-
-
- public string deviceid { get; set; }
-
-
-
- public long sch_checkin_time { get; set; }
-
-
-
- public DateTime sch_checkin_time_dt
- {
- get
- {
- return new DateTime(sch_checkin_time * 10000000 + 621355968000000000L).ToLocalTime();
- }
- }
-
-
-
- public int groupid { get; set; }
-
-
-
- public int schedule_id { get; set; }
-
-
-
- public int timeline_id { get; set; }
- }
- }
|