12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Groups
- {
- public class DelegationVisaViewList : ListViewBase<Grp_DelegationVisaView>
- {
-
- }
- public class Grp_DelegationVisaView
- {
- public int RowNumber { get; set; }
- public int DiId { get; set; }
- public string TeamName { get; set; }
- public string ClientUnit { get; set; }
- public string ClientName { get; set; }
- public string TeamLev { get; set; }
- public string VisitDate { get; set; }
- public int VisitDays { get; set; }
- public int VisitPNumber { get; set; }
- public string CompletePNumber { get; set; } = "已完成0人";
- }
- }
|