123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.QiYeWeChat
- {
-
-
-
- public class GroupStatus_UserSimplelistView : ResponseBase
- {
- public List<GroupStatus_UserSimplelistItem> userlist { get; set; }
- }
- public class GroupStatus_UserSimplelistItem
- {
-
-
-
- public string userid { get; set; }
-
-
-
- public string name { get; set; }
-
-
-
- public List<int> department { get; set; }
- }
-
-
-
- public class GroupStatus_CreateChatView : ResponseBase
- {
- public string chatid { get; set; }
- }
- public class GroupStatus_SendMessageView : ResponseBase
- {
-
-
-
- public string invaliduser { get; set; }
-
-
-
- public string invalidparty { get; set; }
-
-
-
- public string invalidtag { get; set; }
-
-
-
- public string unlicenseduser { get; set; }
-
-
-
- public string msgid { get; set; }
-
-
-
- public string response_code { get; set; }
- }
- }
|