1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllUfpEntity
- {
- public class AuthorizeModel
- {
- public int Single { get; set; }
- public Multity Multity { get; set; }
- }
- public class Multity
- {
- public int[] Removes { get; set; }
- public int[] Adds { get; set; }
- public string[] Addpros { get; set; }
- public string[] AddemployNum { get; set; }
- public string[] Addqtype { get; set; }
- }
- }
|