Grp_DelegationVisaView.cs 793 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.ViewModels.Groups
  7. {
  8. public class DelegationVisaViewList : ListViewBase<Grp_DelegationVisaView>
  9. {
  10. }
  11. public class Grp_DelegationVisaView
  12. {
  13. public int RowNumber { get; set; }
  14. public int DiId { get; set; }
  15. public string TeamName { get; set; }
  16. public string ClientUnit { get; set; }
  17. public string ClientName { get; set; }
  18. public string TeamLev { get; set; }
  19. public string VisitDate { get; set; }
  20. public int VisitDays { get; set; }
  21. public int VisitPNumber { get; set; }
  22. public string CompletePNumber { get; set; } = "已完成0人";
  23. }
  24. }