1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.QiYeWeChat
- {
-
-
-
-
- public class Create_Request
- {
-
-
- public string? access_token { get; set; }
-
-
-
- public string? userid { get; set; }
-
-
-
- public string? name { get; set; }
-
-
-
- public string? mobile { get; set; }
-
-
-
- public List<long> department { get; set; }
-
-
-
- public string? position { get; set; }
-
-
-
- public int gender { get; set; }
-
-
-
-
-
- public string? biz_mail { get; set; }
-
-
-
- public int enable { get; set; } = 1;
- }
- }
|